GIF89a php
Current File : /home/hencockfreshchic/public_html/js/delCartItem2.js
function delCartItem2(prod_id)
{
 
	var count=$("#count").val();	
	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)
      {
      	 count=count-1;
      	 $("#count").val(count); 
      	 document.getElementById("overlay").style.display = "none";
      	 if(count>0){ 
      	 document.getElementById(prod_id).style.display = "none";
      	 window.location.reload();
      	}
      	else
      	{
      		window.location.href = ("cart.php");
      	}
      }
      else if(this.responseText==0)
      {
      	 document.getElementById("overlay").style.display = "none";
      	alert("Error : Unable to delete items from cart");
      }
      else if(this.responseText==2)
      {
      	 document.getElementById("overlay").style.display = "none";
      	window.location.href = ("login.php");
      }
	}
  };
 
  xmlhttp.open("GET","delCartItem2.php?prod_id="+prod_id,true);
  xmlhttp.send();
}