I have two frames in a frameset - frame[0] contains a script that loads a page into frame[1] using
top.frames[1].location.href = 'http://some_location.com/page.html';
and then performs actions on that page, for example searching text within the page. I need the script to wait until page.html has loaded in the second frame before doing this, and I can't use onload in the second page because I have no control over its source.
Is there a way to do this?