Jquery Internet Explorer 8 $(window) undefined
When I use开发者_如何学C the JQuery method $(window) in Chrome, FF etc. it returns [ DOMWindow ], when I use it in Internet Explorer 8 it returns null. How can I get the window jquery object in IE8?
Sounds like jQuery conflicting with something else using $
(this probably only happens in the developer console). Try jQuery(window)
.
精彩评论