GIF89a
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"); window.location.href = ("menus.php"); } 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(); }