// alert('yo'); var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { // alert('yaya'); document.getElementById("megaMenuDiv").innerHTML = this.responseText; } }; xhttp.open("GET", "/includes/MegaMenu.html", true); xhttp.send();