Change HTML of an iFrame with jQuery?

You’ll have to parse the iframe content.

$("#frameid").contents().find("div").html('My html');

More here : http://api.jquery.com/contents/

Leave a Comment