Esteban

Results 2 comments of Esteban

Suggestion: I would drop the user agent browser detection... jQuery removed it for a reason. Attaching the events to $(document) should work on all browsers and jQuery normalizes event.which so...

I modified the method and it seems to be working well. Just thought I'd share: ``` plugin.goTo = function(idx){ if(idx == global.currentSlide || global.animating) return; $(global.slides[global.currentSlide]).fadeOut(plugin.settings.animSpeed); if(idx == 0){ global.currentSlide...