I have a plugin which records user action on any website. The actions are recorded in a different window of the same browser. For IE, it works properly on all sites except the ones having Iframe. The script gets blocked on the sites having Iframes with the following error: SCRIPT5: Access is denied.
Its a self created plugin.
The error is on window.open It does not open a new window properly
Below is the snippet of the plugin.
newwindow = window.open("", "ScriptGen", "menubar=0,directories=0,toolbar=no,location=no,resizable=yes,scrollbars=yes,width=450,height=250,titlebar=0");
newwindow.document.write('<title>New Console</title>');
Using alert(window) displays "[object Window] on all sites..but on sites having iframes, it displays only "[object]"
Please guide.