jsor / jcarousel

Riding carousels with jQuery.
https://sorgalla.com/jcarousel/
MIT License
1.99k stars 736 forks source link

Event on image click #773

Closed lpguedes closed 8 years ago

lpguedes commented 9 years ago

Hi again!

Sorry to bother you again, but I believe will be the last time ...

I wonder if it is possible to trigger some kind of event (such as a image zoom plugin or similar, for example), when you click on it.

You can use this type of event?

A hug

Thanks!

jsor commented 9 years ago

This is out of the scope of jCarousel, just use plain jQuery events:

$('.jcarousel').on('click', 'img', function() {
   // Do something
});