window.onload = function() { if ( document.getElementById("jc-confronto").getAttribute("data-confronto") ) { var ajax = new XMLHttpRequest(); ajax.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { document.getElementById("jc-confronto").innerHTML = this.responseText; } }; ajax.open("GET", "https://produtos.ne10.uol.com.br/confronto/confronto/" + document.getElementById("jc-confronto").getAttribute("data-confronto") + ",integrar.html", true); ajax.send(); } };