I made a new window
var win = window.open("", "", "width=400, height=200");
and I want to reach my body with
var $windowBody = $(win.document.body);
and from there use methods like .find() , .html()
This works well in FF and Chrome , but not in IE . I also found a related post on this.
How to fix it in IE? those. how to make this work cross browser
jsFiddle - note that the close button never appears in IE.
javascript jquery internet-explorer
Rikard
source share