function createObject() { var tipo_richiesta; var browser = navigator.appName; if(browser == "Microsoft Internet Explorer"){ tipo_richiesta = new ActiveXObject("Microsoft.XMLHTTP"); }else{ tipo_richiesta = new XMLHttpRequest(); } return tipo_richiesta; } var http = createObject(); function invia_dati(from,to,qta,id,location) { // add image progress var par = window.parent.document; var images = par.getElementById('dati'); var new_div = par.createElement('div'); var new_img = par.createElement('img'); new_img.src = 'images/loading.gif'; new_div.appendChild(new_img); images.appendChild(new_div); http.open('get', 'add-location-cart.php?action=add&from='+from+'&to='+to+'&qta_'+id+'='+qta+'&cosa=Add to list'+'&location='+location+''); http.onreadystatechange = handleResponse; http.send(null); } function handleResponse() { if(http.readyState == 4){ var response = http.responseText; document.getElementById('dati').innerHTML = response; } }