GIF89a php
Current File : /home/hencockfreshchic/public_html/app_old/js/minus.js
function minus(idd,prod_id,sale_price)
{
	var data=parseInt($("#"+idd).val());

	if(data==1)
	{
		$("#"+idd).val(data);
	}
	else
	{
		data=data-1;
		$("#"+idd).val(data);
	}

	if (window.XMLHttpRequest) {
            xmlhttp = new XMLHttpRequest();
        } else {          
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
  xmlhttp.onreadystatechange=function() 
   {
    if (this.readyState==4 && this.status==200) 
	{
      loadGrandTotal();
	}
  };
  xmlhttp.open("GET","updateCart.php?data="+data+"&prod_id="+prod_id+"&sale_price="+sale_price,true);
  xmlhttp.send();
}