I'm having trouble accessing an iframe in order to manipulate content inside of the frame.
<iframe id="verify" src="http://www.wesite.com/"></iframe>
When I want to access it, with js, it tells me it's undefined
var frame = document.getElementById("verify");
If that were to work, how would I then access the stuff in that frame to manip it? Would it just be:
frame.document.getElementById("ElementInsideIframe").InnerHtml="etc";