I\'m trying to create a div popup gallery type thing. But I\'m having an issue with my approach.
div
I have a few linked thumbnail images, which link to the lar
An element's Id must be unique. So you can't have two a tags with same ids.
JS:
$('.galImage').click(function(e){ e.preventDefault(); alert($(this).attr("href")); });