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]