Quantcast
Channel: Blog – BuyProTheme
Viewing all articles
Browse latest Browse all 10

WordPress ajax next previous button without plugin

$
0
0
Create an index.html file : Include jQuery and respective css file in thesection of your html template. <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> Explicit javascript code : <script type="text/javascript"> $(document).ready(function(){ var offset=0; loadCurrentPage(); $("#next, #prev").click(function(){ offset = ($(this).attr('id')=='next') ? offset + 10 : offset - 10; if (offset<0){ offset=0; }else{ loadCurrentPage(); } }); function loadCurrentPage(){ $.ajax({ url: 'posts.php?offset=' […]

Viewing all articles
Browse latest Browse all 10

Latest Images

Trending Articles



Latest Images