GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/js/saveMenu2.js
function saveMenu2(field,id){
	document.getElementById("overlay").style.display = "block";
	var data=$("#"+id).val();
	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("Menu has been updated");
      }
      else if(this.responseText==0)
      {
      	document.getElementById("overlay").style.display = "none";
      	alert("Unable to update menu");
      }
	}
  };
  xmlhttp.open("GET","saveMenu2.php?field="+btoa(field)+"&data="+btoa(data),true);
  xmlhttp.send();
}