MCPcopy
hub / github.com/dataarts/dat.gui / doScrollCheck

Function doScrollCheck

tests/jquery.js:937–953  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

935
936// The DOM ready check for Internet Explorer
937function doScrollCheck() {
938 if ( jQuery.isReady ) {
939 return;
940 }
941
942 try {
943 // If IE is used, use the trick by Diego Perini
944 // http://javascript.nwbox.com/IEContentLoaded/
945 document.documentElement.doScroll("left");
946 } catch(e) {
947 setTimeout( doScrollCheck, 1 );
948 return;
949 }
950
951 // and execute any waiting functions
952 jQuery.ready();
953}
954
955return jQuery;
956

Callers 1

jquery.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…