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 :( How can I stop pager click propagation to the parent (the Isotope element)? Any advice much appreciated!
ps: if I use 'mouseover' as pagerEvent, it works; but the slides flicker twice. So that's no easy way out either. And - mouseover don't work on screen phones and tablet devices...