jQuery cycle with pager inside div with click events - can't stop propagation
问题 I'm using the jQuery Isotope plugin. In each clickable (maximising/minimising) Isotope element, I'm having one jQuery Cycle slideshow generated like $('.slideshow.mainview').each(function () { var $pager = $('<div class="pager"></div>').insertAfter(this); // creates a pager for each slideshow $(this).cycle({ speed: 300, timeout: 0, pager: $pager, pagerEvent: 'click', allowPagerClickBubble: false }); }); Clicking on a pager link closes the Isotope element, so one can't see the next slide :(