Hi, Just wondering whats the function used in jQuery for ajax XMLHttpRequest Like the following 0 The request is not initialized 1 The request has been set up 2 The request has been sent 3 The request is in process 4 The request is complete More info here: http://www.w3schools.com/ajax/ajax_xmlhttprequest.asp Thanx
jQuery (and other libraries) abstract this so you don't have to do it yourself. Just set the call back and thats it.
$.get("test.php", function(data){ alert("Data Loaded: " + data); }); PHP: http://docs.jquery.com/Ajax/jQuery.get