GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/js/saveWConfig.js
function saveWConfig(field,id){
	var data=$("#"+id).val();
	
	if(data==""){
		alert("Cant be null");
		$("#"+id).focus();
		return false;
	}

	if (window.XMLHttpRequest) {
            // code for IE7+, Firefox, Chrome, Opera, Safari
            xmlhttp = new XMLHttpRequest();
        } else {
            // code for IE6, IE5
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
  xmlhttp.onreadystatechange=function() 
   {
    if (this.readyState==4 && this.status==200) 
	{
			if(this.responseText==1){
      			alert("Data has been saved");
				window.location.href = ("webconfigform.php");
				$("#"+id).focus();
			}else{
					alert("Unable to save data");
				window.location.href = ("webconfigform.php");
				$("#"+id).focus();
			}
	}
  };
  xmlhttp.open("GET","saveWConfig.php?field="+field+"&data="+data,true);
  xmlhttp.send();
}