Accessing IFrame through JavaScript
window.frames[0].location
window.frames[“myframename”].location // through name
document.getElementById(‘myframeid’).src // through id
Accessing a div element name myDiv within Iframe
window.frames[“myframename”].document.getElementById(‘myDiv’).innerHTML
document.getElementById(‘myframeid’).contentDocument.getElementById(‘myDiv’).innerHTML
Accessing a div element name myDivInside within Iframe(myfframeid) which itself is inside an Iframe(myframeid)
document.getElementById(‘myframeid’).contentDocument.getElementById(‘myfframeid’).contentWindow.document.getElementById(‘myDivInside’).innerHTML
http://www.dyn-web.com/tutorials/iframes/
Bye.
One thought on “Accessing IFrame through JavaScript”