Possibly the most simple jQuery Slider

tmirror
Possibly the most simple jQuery Slider
Do you have jQuery in your site or blog and space to insert 10 lines of code? If the answer is yes, and you want to have an automatic slideshow, this is the simplest code I've seen so far. So, having a succession of images added inside a box with a common general container, would give this result: Related: Image Slider using only CSS How to add a Simple jQuery Slider to Blogger Step 1. Adding the JavaScript If you don't have jQuery, then you should add this line just above the </head> tag to make the slideshow work: <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js' type='text/javascript'/> Where the </head> tag can be found? Go to Template > Edit HTML > click anywhere inside the code area and press the CTRL + F keys. Inside the search box, type this tag and hit Enter to find it: </head> Once confident that you have the library in your template, let's add the below script as well, which will make the set of …