var xmlhttp = null; if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { return xmlhttp.responceText; } } this.model.result = xmlhttp.onreadystatechange; xmlhttp.open("GET", this.model.konfig, false); xmlhttp.send(); }
iFrames.