How can I get an element from within a frameset frame using JavaScript?

You need to get the Document object for the frame.

window.frames[1].document.getElementById('someElementId')

Leave a Comment