Is there a way to manipulate the HTML of an iframe that is from the same domain using jQuery?
Thanks for the help.
You can use contents() to manipulate the contents of the iframe.
iframe
$("#frameDemo").contents().find("div").html("new HTML content goes here");