GIF89a
function addCart(prod_id,user_id,sale_price,qty) { //var cartCount=parseInt($("#cartCount").text()); document.getElementById("overlay").style.display = "block"; 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"; //var newCount=cartCount-1; //$("#cartCount").text(newCount); //alert("Material added to cart"); window.location.href = (window.location.href); } else if(this.responseText==0) { document.getElementById("overlay").style.display = "none"; alert("Error : Unable to add material into cart"); } else if(this.responseText==2) { document.getElementById("overlay").style.display = "none"; window.location.href = ("login.php"); } else if(this.responseText==4) { document.getElementById("overlay").style.display = "none"; alert("Product is out of stock, You can't add into cart"); } } }; //alert("addCart.php?prod_id="+prod_id+"&user_id="+user_id+"&sale_price="+sale_price+"&qty="+qty); xmlhttp.open("GET","addCart.php?prod_id="+prod_id+"&user_id="+user_id+"&sale_price="+sale_price+"&qty="+qty,true); xmlhttp.send(); }