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