Is there a way to manipulate the HTML of an iframe that is from the same domain using jQuery?
Thanks for the help.
If you want to change the contents inside the tag of the iframe, you can use this code:
$("#iframe_id").contents().find("body").html('my_new_content');