I have two frames. The pages in both frames come from the same domain (either localhost or a live domain - both using the same protocol).
The first frame needs to ac
Use parent.frames["xsample"] to access the frame.
Implicit references to named elements on the global object is not standardized.
On a different note, never do setTimeout("doMoreWork(), 1000)" as this forces the VM to use eval to execute the code.
Use setTimeout(doMoreWork, 1000) which is the proper way to do it.