vote up 0 vote down star

I'm trying to convince a page that it is the window.top even though it is in an iframe.

In FF you can do

window.defineGetter('top', function() { return window});

in Webkit (Safari/Chrome) you can simply do

window.top = window

but in IE none of those methods work. Anyone done this before?

flag

25% accept rate

3 Answers

vote up 0 vote down

Try window.top = window.top.window

More details on DOM Window.

link|flag
Unfortunately this doesn't work. The issue is that IE throws an error when trying to set window.top (or even window for that matter) – Dave Feb 23 at 9:44
vote up 0 vote down

Setting window.top doesn't work. Its not allowed in IE.

I ended up having to make my own fake window object, fill it with most of the properties of the window object, and then making a fake .top property.

link|flag
vote up 0 vote down

I'd maybe try using the "define getter" notation that John Resig uses in his article on the topic:

Window.prototype.__defineGetter__('top',function(){return this;});

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.