Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Jannerel Roche | > | Paging Class with AJAX or HREF | > | pagingajax.js | > | Download | ||
|
Download |
/* MAIN AJAX FUNCTION: xxmlhttprequest2() */ $(document).ready(function() { $("#preloader").hide(); }); function xmlhttprequest2(id, url, methods, keyvalue) { $("#preloader").show(); $.ajax({ type: "GET", url: url+'?'+keyvalue, success: function(html){ $("#preloader").hide(); $("#"+id).empty().append(html); }, failure: function(html){ $("#"+id).innerHTML = "Sorry, please try again..." } }); } |