GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/js/placeProduct2.js
function placeProduct2(){
	var subcat=$("#subcat").val();
	var catt=$("#cat").val();

	if (window.XMLHttpRequest) {
            // code for IE7+, Firefox, Chrome, Opera, Safari
            xmlhttp = new XMLHttpRequest();
        } else {
            // code for IE6, IE5
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
  xmlhttp.onreadystatechange=function() 
   {
    if (this.readyState==4 && this.status==200) 
	{
      document.getElementById("subCat2").innerHTML=this.responseText;
       $("#subCat2").attr("style", "display:block");
	}
  };
  xmlhttp.open("GET","placeProduct2.php?subcat="+btoa(subcat)+"&catt="+btoa(catt),true);
  xmlhttp.send();	
}