window's tag archives

How to write in jquery “window.parent.document.getElementById().innerHTML”

For example we want get this [code] window.parent.document.getElementById("myEle").innerHTML = html; [/code] In Jquery, we can write like this: [code] $("#myEle", window.parent.document).html(html); [/code] or we can also write in this way: [code] parent.$("#myEle").html(html); [/code]