GIF89a php
Current File : /home/hencockfreshchic/public_html/js/quickView.js
function quickView(prod,sale_price)
{
	 if (window.XMLHttpRequest) {
            xmlhttp = new XMLHttpRequest();
        } else {          
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
  xmlhttp.onreadystatechange=function() 
   {
    if (this.readyState==4 && this.status==200) 
	{
		
      document.getElementById("d3").innerHTML=this.responseText;
	}
  };
  xmlhttp.open("GET","quickview.php?prod_id="+prod+"&sale_price="+sale_price,true);
  xmlhttp.send();
}