GIF89a
function placePrices7() { var prod=$("#prod").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) { var id=JSON.parse(this.responseText); $("#real_price").val(id[1]); $("#sale_price").val(id[0]); } }; xmlhttp.open("GET","placePrices7.php?prod_id="+prod,true); xmlhttp.send(); }