jquery cycle example
When I came across this plugin and simple example first thing came to my minde that how to add “previous and Next” Button in slide show, so lets do it. I am using same HTML Code & CSS style used in“JQuery Cycle Plugin – Basic Example 2″. Please refer that so that you can understand. <div id="slide1" class="pics"> <img src="images/beach1.jpg" height="200" width="200"> <img src="images/beach2.jpg" height="200" width="200"> <img src="images/beach3.jpg" height="200" width="200"> </div> <div class="nav"><a href="#" id="prev">Prev</a> <a href="#" id="next">Next</a></div> CSS Style for previous and Next buttona long with configuration. Example 1: jQuery cycle plugin previous and Next links...