.fn.x.init[21]
0: text
1: meta
2: text
3: meta
4: text
5: comment
6: text
7: title
8: text
9: link
10: text
11: div#page.hfeed.site
12: text
13: footer#colophon.site-footer.clearfix
14: text
15: script
16: text
17: script
18: text
19: script
20: text
length: 21
__proto__: Object[0]
А как работать с таким объектом? Он всегда возвращает undefined:
alert(jqObj.contents().find("html").html()) ||
alert(jqObj.find("html").html()) ||
alert(jqObj.html())
Получается тоже самое. Не клонирует, ошибка: Uncaught TypeError: Cannot read property 'ownerDocument' of null. Это будет тем же самым: copyHTML = $("iframe").contents().clone();
Дело в том, что так создается ссылка на $("iframe").contents(), и если там произойдут изменения, то и в "var HTML = $( $("iframe").contents() );" тоже произойдут изменения