I am trying to create a simple slider for my website and found this example on jsfiddle: http://jsfiddle.net/AtFeF/79/
From that I created an html file containing all th
It seems that you haven't included jquery file into your html document.
Hence, the code :
$(function () {
setInterval(cycleImages, 1400);
});
wont work. Because $ belongs to jQuery.
So you need to include jquery either by
or download jquery file from jquery.com to your local drive and include with relative path as