Suppose we have a html page with frame or iframe in it and we need to get an element in it. Simple
document.getElementById("myElement");
will not find it, as it is searched only in the main page, where the frame is set. What we should do, is to find the frame first and then look for needed element in the right frame.
frame = document.getElementById("myFrame");
frame.contentWindow.getElementById("myElement");