Lines Matching refs:window

16 (function( window, undefined ) {
18 // Use the correct document accordingly with window argument (sandbox)
19 var document = window.document,
20 navigator = window.navigator,
21 location = window.location;
31 _jQuery = window.jQuery,
34 _$ = window.$,
392 if ( window.$ === jQuery ) {
393 window.$ = _$;
396 if ( deep && window.jQuery === jQuery ) {
397 window.jQuery = _jQuery;
465 // A fallback to window.onload, that will always work
466 window.addEventListener( "load", jQuery.ready, false );
474 // A fallback to window.onload, that will always work
475 window.attachEvent( "onload", jQuery.ready );
482 toplevel = window.frameElement == null;
502 // A crude way of determining if an object is a window
520 // Make sure that DOM nodes and window objects don't pass through, as well
566 if ( window.JSON && window.JSON.parse ) {
567 return window.JSON.parse( data );
586 if ( window.DOMParser ) { // Standard
611 // We use an anonymous function so that context is window
613 ( window.execScript || function( data ) {
614 window[ "eval" ].call( window, data );
690 // The window, strings (and functions) also have 'length'
1871 // the window, but it will allow it on all other JS objects; other browsers
1873 // Ensure that `cache` is not a window object #10080
2234 // try/catch handles cases where IE balks (such as removing a property on window)
3182 // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
3193 // Only add window if we got to document (e.g., not plain obj or detached DOM)
3195 eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]);
3228 // Don't do default actions on window, that's where global variables be (#6170)
3257 event = jQuery.event.fix( event || window.event );
3593 // NB: No relatedTarget if the mouse left/entered the browser window
6935 // a field from window.location if document.domain has been set
7241 "* text": window.String,
7911 previous = window[ jsonpCallback ],
7933 window[ jsonpCallback ] = function( response ) {
7940 window[ jsonpCallback ] = previous;
7943 window[ jsonpCallback ]( responseContainer[ 0 ] );
8056 xhrOnUnloadAbort = window.ActiveXObject ? function() {
8068 return new window.XMLHttpRequest();
8074 return new window.ActiveXObject( "Microsoft.XMLHTTP" );
8080 jQuery.ajaxSettings.xhr = window.ActiveXObject ?
8251 jQuery( window ).unload( xhrOnUnloadAbort );
9252 // Get window width or height
9299 window.jQuery = window.$ = jQuery;
9300 })( window );