Is it possible to extend the DOM of a new window opened using window.open without loading prototypeJ
- by Morten
Hi!
Is it possible to extend the DOM of a new window that I opened, using something like this:
var newWindow = window.open('about:blank', 'testWindow', '');
Element.extend(newWindow);
I thought Element.extend would work.. But I done see any refference to prototype in the DOM.
Any ideas?
Thank you!
Morten