MCPcopy Index your code
hub / github.com/deployd/deployd / doScrollCheck

Function doScrollCheck

test-app/public/jquery.js:963–979  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

961
962// The DOM ready check for Internet Explorer
963function doScrollCheck() {
964 if ( jQuery.isReady ) {
965 return;
966 }
967
968 try {
969 // If IE is used, use the trick by Diego Perini
970 // http://javascript.nwbox.com/IEContentLoaded/
971 document.documentElement.doScroll("left");
972 } catch(e) {
973 setTimeout( doScrollCheck, 1 );
974 return;
975 }
976
977 // and execute any waiting functions
978 jQuery.ready();
979}
980
981return jQuery;
982

Callers 1

jquery.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected