GIF89a
function placeOrderStatus() { var sr=$("#prod_id").val(); if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp = new XMLHttpRequest(); } else { // code for IE6, IE5 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (this.readyState==4 && this.status==200) { document.getElementById("add1").innerHTML=this.responseText; } }; xmlhttp.open("GET","loadOrderStatus.php?sr="+sr,true); xmlhttp.send(); }