Hi there,
I have an iframe with id "appframe", the source is page.html and it's on the same server. I want to get the source of the page using jQuery.
alert($("#appframe").contents().find("html").html());
returns <head></head><body></body>
even though the document does not contain those tags, it only contains "Default page" - any idea how to get the right source of the whole document, including (when existing) etc. using jQuery?