Is there a way to manipulate the HTML of an iframe that is from the same domain using jQuery?
Thanks for the help.
You'll have to parse the iframe content.
$("#frameid").contents().find("div").html('My html');
More here : http://api.jquery.com/contents/