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
You need to use classes instead as IDs must be unique.
E.g
and your jQuery would be
$('.galImage').click(function(e){ e.preventDefault(); alert($(this).attr("href")); });