orion3dgames / gridder

A jQuery plugin that displays a thumbnail grid expanding preview similar to the effect seen on Google Images.
http://orion3dgames.github.io/gridder/
461 stars 130 forks source link

Clicking disabled within the gridder-expanded-content div #68

Closed tmurren closed 6 years ago

tmurren commented 6 years ago

Hi,

I have a small image gallery that I'm trying to add within the gridder-expanded-content div, and the click events aren't being read in this area. Is there something preventing this? A normal html anchor tag will link from this area to a new page, but I can't add this simple click function below to an image in the gridder-expanded-content area.

$('.gridder-expanded-content img').click(function() {
   console.log('test');
});