DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Reterive Latest Version Of Page Using JQuery Ajax
Reterive latest version of page using jQuery Ajax
$.ajax({
url: "test.html",
cache: false,
success: function(html){
$("#results").append(html);
}
});





