GIF89a
function delWishList(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"; } else { window.location.reload(); } } else if(this.responseText==0) { document.getElementById("overlay").style.display = "none"; alert("Error : Unable to delete items from wishlist"); } else if(this.responseText==2) { document.getElementById("overlay").style.display = "none"; window.location.href = ("login.php"); } } }; xmlhttp.open("GET","delWishList.php?prod_id="+prod_id,true); xmlhttp.send(); }