// function processRequest() { // if (httpRequest.readyState == 4); { // if (httpRequest.status == 200); { // var response = httpRequest.responseText; // var elem = document.createElement("div"); // elem.innerHTML = response; // //document.parentNode.appendChild(elem); // //document.createTextNode(response); // //document.body.appendChild(elem); // var aa = document.getElementById("komentare_alagaesie"); // aa.parentNode.appendChild(elem); // } // } // } //function nacti(){ // if (window.ActiveXObject) { // httpRequest = new ActiveXObject("Microsoft.XMLHTTP"); // } else { // httpRequest = new XMLHttpRequest(); // } // httpRequest.open("GET", '/JavaScript/komentare/stranka.aspx?id=2', true); // httpRequest.onreadystatechange = processRequest; // httpRequest.send(null); // //httpRequest.send("aaa=bbb"); //} function nacti() { var elem = document.createElement("iframe"); elem.src = 'http://alagaesia.aspone.cz/JavaScript/komentare/stranka.aspx?id=12345'; elem.scrolling="no"; elem.frameborder="0"; elem.style = "border:none; overflow:visible;padding:0px; width:450px; height:560px;"; elem.height="560"; elem.width="450"; elem.allowtransparency = "true"; var aa = document.getElementById("komentare_alagaesie"); aa.parentNode.appendChild(elem); } nacti();