Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Simple Jquery slideshow that works Reply To: Simple Jquery slideshow that works

#206772
Shikkediel
Participant

Slideshow works when the script is added afterwards (so no syntax issues there). The function wrapper’s a likely suspect to me :

(function($){ ... })(jQuery);

Instead you could try :

$(function() { ... });

Edit – although I doubt a bit that is really it.