GIF89a
function pincodeAvail(){ document.getElementById("overlay").style.display = "block"; var pincode=$("#txtpincode_deliver").val(); if(pincode=="") { alert("Enter pincode"); $("#txtpincode_deliver").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) { document.getElementById("overlay").style.display = "none"; alert("Delivery available on this pincode"); $("#txtpincode_deliver").val(""); } else { document.getElementById("overlay").style.display = "none"; alert("Delivery not available on this pincode"); $("#txtpincode_deliver").val(""); } } }; xmlhttp.open("GET","pincodeAvail.php?pincode="+pincode,true); xmlhttp.send(); }