Hallo all.
With this line of code i get the html content of a page living in an
iframe:
var html = $('#indexIframe').contents().find('html');
then I need to append a line in the header and I do it in this way
$(html).find('head').prepend(printCss);
The problem is that I need to modify the html to send it to a server-
side component, but I don't want to see any changes to the html
interpreted by the browser.
It seems that I need a html.clone() function.
Is there anything that could help me?
kind regards
Massimo