Skip to content Skip to sidebar Skip to footer

Load Html In Iframe And Access The Dom

I want to load a html file into an iframe using JavaScript, then access the DOM and get an element by id from my html file, this is my code : &

Solution 1:

If you have jquery library included in iframe page, You can try the following to find the parent of the iframe;

$('#domElem', window.parent.document).html();

Post a Comment for "Load Html In Iframe And Access The Dom"