Hello Dear Senior Programers, Please Help Me tO Create Auto Pagination In My Web Site Please Tell Me That In This Script, <script> $(function() { var $update = $( '#preview > span' ); $( "#slider" ).pagination( { total : 100, onChange : function( value ) { $update.text( value ); } } ); }); Which Syntax We Can Enter To Open Next Page Automatically Like Page2.php And In Page 3 Script Open Page3.php Please Tell Me, I'm Noob In Web Programing ..
After $update.text(value); on the next line add: document.location = 'page' + value + '.php'; Code (markup): That will automatically send user to page2.php and so on.