Hi, does anyone know how to insert iframe before the div? It kept returing false on the iframe, i don't know what is wrong. Please help...
Does anyone also know how to append a div to the iframe cos i wasn't able to do so too...
javascript Code:
function initMainMenu() {
var obj = document.getElementById("menuBar");
if (browser.isIE) {
var iframeMain = document.createElement("IFRAME");
iframeMain.frameBorder = 1;
iframeMain.style.width = document.body.clientWidth;
iframeMain.src = "javascript:false;";
iframeMain.style.zIndex = 5;
iframeMain.style.position = "absolute";
obj.parentNode.insertBefore(iframeMain, obj);
}
}