Home › Forums › JavaScript › Simple Jquery slideshow that works › Reply To: Simple Jquery slideshow that works
August 19, 2015 at 11:52 pm
#206772
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.