GIF89a
function savePrice() { var price=$("#price").val(); if(price=="") { alert("Enter price"); $("#price").focus(); return false; } if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (this.readyState==4 && this.status==200) { if(this.responseText==1) { window.location.reload(); } else { alert("Unable to save data."); window.location.reload(); } } }; xmlhttp.open("GET","savePrice.php?price="+price,true); xmlhttp.send(); }