/ Published in: JavaScript
You may need to change the IDs around.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script type="text/javascript" charset="utf-8"> jQuery(document).ready(function(){ jQuery('#postPagination a').live('click', function(e){ e.preventDefault(); var link = jQuery(this).attr('href'); jQuery('#content').html('Loading...'); jQuery('#content').load(link+' #contentInner'); }); }); </script>
URL: http://jvcustomdesigns.com