data: function( elem, name, data ) {
    if ( !jQuery.acceptData( elem ) ) {
        return;
    }
    elem = elem == window ? windowData : elem;

Copied directly from the jQuery source.

Why is it not safe to use elem === window?

Why does jQuery use type coercion on the window object?

It would appear that in IE there's an issue with top

top == window // true
top === window // false
link|improve this question

Does their documentation claim it is not safe? – jondavidjohn Jan 31 '11 at 2:17
feedback

1 Answer

up vote 2 down vote accepted

See here for why checking againts the window object with === is unsafe in IE.

I think the root cause is that IE is closely coupled with the Windows OS so you have various OS objects referenced through window & and the equality check just dies. That and it just doesn't handled the global host object correctly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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