GIF89a php
Current File : /home/hencockfreshchic/public_html/js/pincodeAvail.js
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();

}