GIF89a
function plus(idd,prod_id,sale_price) { var data=parseInt($("#"+idd).val()); if(data==10) { $("#"+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(); }