Let's face it, jQuery/jQuery-ui is a heavy download.

Google recommends deferred loading of JavaScript to speed up initial rendering. My page uses jQuery to set up some tabs which are placed low on the page (mostly out of initial view) and I'd like to defer jQuery until AFTER the page has rendered.

Google's deferral code adds a tag to the DOM after the page loads by hooking into the body onLoad event:

<script type="text/javascript">

 // Add a script element as a child of the body
 function downloadJSAtOnload() {
 var element = document.createElement("script");
 element.src = "deferredfunctions.js";
 document.body.appendChild(element);
 }

 // Check for browser support of event handling capability
 if (window.addEventListener)
 window.addEventListener("load", downloadJSAtOnload, false);
 else if (window.attachEvent)
 window.attachEvent("onload", downloadJSAtOnload);
 else window.onload = downloadJSAtOnload;

</script>

I'd like to defer loading of jQuery this way, but when I tried it my jQuery code failed to find jQuery (not completely unexpected on my part):

$(document).ready(function() {
    $("#tabs").tabs();
});

So, it seems I need to find a way to defer execution of my jQuery code until jQuery is loaded. How do I detect that the added tag has finished loading and parsing?

As a corollary, it appears that asynchronous loading may also contain an answer.

Any thoughts?

link|improve this question

Why not just include jQuery (and your own JS file(s)) at the bottom of your page rather than in the head? – kennis May 2 '11 at 1:42
Google says (in the first link I provided), "scripts must be downloaded, parsed, and executed before the browser can begin to render a web page". This means loading jQuery at the bottom of the page means that the page is still is not rendered until jQuery is parsed and executed. Is there a way to load it asynchronously and let it do it's job after the page loads? – Kevin P. Rice May 2 '11 at 1:58
feedback

7 Answers

up vote 7 down vote accepted

Try this, which is something I edited a while ago from the jQuerify bookmarklet. I use it frequently to load jQuery and execute stuff after it's loaded. You can of course replace the url there with your own url to your customized jquery.

(function() {
      function getScript(url,success){
        var script=document.createElement('script');
        script.src=url;
        var head=document.getElementsByTagName('head')[0],
            done=false;
        script.onload=script.onreadystatechange = function(){
          if ( !done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete') ) {
            done=true;
            success();
            script.onload = script.onreadystatechange = null;
            head.removeChild(script);
          }
        };
        head.appendChild(script);
      }
        getScript('http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js',function(){
            // YOUR CODE GOES HERE AND IS EXECUTED AFTER JQUERY LOADS
        });
    })();

I would really combine jQuery and jQuery-UI into one file and use a url to it. If you REALLY wanted to load them separately, just chain the getScripts:

getScript('http://myurltojquery.js',function(){
        getScript('http://myurltojqueryUI.js',function(){
              //your tab code here
        })
});

NOW, to get all this to execute when the DOM is ready, you'll want http://code.google.com/p/domready/, which is just jQuery's $(document).ready() stripped out and made ready for use. It's 4KB (uncompress - compress it and you'll save even more) of DOM.ready coolness. Use that, and paste the code above as the callback, and you should be all set.

link|improve this answer
Looks like the fancy version of tylermwashburn's suggestion. By deferring everything, I think it sets up a dependency-order problem: MyCode relies on JQueryUI relies on JQuery. Thus, some code to load each--in proper order--is needed. You have given me some ideas. – Kevin P. Rice May 2 '11 at 4:13
actually, this is completely different from tylermwashburn's suggestion. What this does for you is load jQuery and then load jQuery ui and THEN executes your jquery/jqueryUI-dependent code, which is what you asked for...this code is cross-browser (which is why it looks 'fancy') and works every time for me. As for the DOMready code, I just realized that it might be a little old and I'd not use it. I think I have an updated domready somewhere's...let me find it. – ampersand May 2 '11 at 4:21
tyler's suggestion is good. What I would do is make the chained getscripts the callback of the body load event – ampersand May 2 '11 at 4:44
Yes, I see the differences--but similarly it's waiting for onload/onreadystatechange event. ALSO: I don't think DOMready is necessary since jQuery provides it, right? As long as dependencies are satisfied by loading the scripts in order, I'm guessing the jQuery .ready() method would hold off execution in the off-chance that all the scripts loaded before DOMready occurred. – Kevin P. Rice May 2 '11 at 4:52
what I was attempting with the DOMready bit there was to provide a solution for this part of your question:"...defer jQuery until AFTER the page has rendered." If you want to defer these getScripts() until after the page has rendered, you'll need to FIRST have a domready alternative, because you can't use jQuery's...because you're loading jQuery AFTER. Anyway, I think this is unecessary for your purposes. If you bind to body's load event, I think you'll get what you're looking for. – ampersand May 2 '11 at 4:59
show 2 more comments
feedback

Put jQuery and your jQuery dependent code at the end of your HTML file.

Edit: A little more clear

<html>
<head></head>
<body>
    <!-- Your normal content here -->
    <script type="text/javascript" src="http://path/to/jquery/jquery.min.js"></script>
    <script>//Put your jQuery code here</script>
</body>
</html>
link|improve this answer
That seems to be the "next best" solution, but it's not really the same. While it does allow other resources to load, Google says (in the first link I provided), "scripts must be downloaded, parsed, and executed before the browser can begin to render a web page". This means loading jQuery at the bottom of the page means that the page is still is not rendered until jQuery is parsed and executed. Is there a way to load it asynchronously and let it do it's job after the page loads? – Kevin P. Rice May 2 '11 at 1:56
1  
This would be super easy to test. Make yourself a nice big 10MB JS file filled with nonsense and include it at the bottom of your page. See if your other content loads first. – kennis May 2 '11 at 2:00
kennis--YES the other content loads first, however, the question pertains to user experience. On mobile browsers especially, the time to parse JavaScript delays the user being able to interact with the page. In Chrome developer tools, the "Evaluate Script" timeline for jQuery is HALF of the time before the DOMContentLoaded and Load events fire. The script that I am able to defer with the Google code (in the question) does not load or execute until AFTER these events. I'd like jQuery to load/parse AFTER the page renders. – Kevin P. Rice May 2 '11 at 2:11
@Kevin, The link also states that "...processing of all elements below the script is blocked until the browser loads the code from disk and executes it." At least with desktop browsers, the user can start interacting with the page before the page is fully loaded. What's the load time difference from initial request until the user can interact with the page (not necessarily the DOMContentLoaded event) with your scripts at the bottom and no script at all? – Dan May 2 '11 at 2:28
I would definitely "benchmark" (as best as you can) both methods to make sure the async is loading faster. Looks like Jeremy has the code you were originally looking for. Good luck! – Dan May 2 '11 at 2:47
show 1 more comment
feedback
element.addEventListener("load", function () {
    $('#tabs').tabs()
}, false);

Try that.

link|improve this answer
Yep! You've got it! So, I think some combination of this and "ampersand's" answer will be the final solution. It appears I will need to chain-load jQuery, then jQuery-UI, then my page code which relies on both. – Kevin P. Rice May 2 '11 at 4:24
@Kevin Yup. That's it. – tylermwashburn May 2 '11 at 22:26
IE<9 does not support addEventListener :( – brunoais Feb 20 at 13:34
feedback

Well it seems to me, all you have to do is either a) add the jQuery code you want to run on load, to the end of the jQuery file or b) append it to the downloadJSAtOnload function like so:

<script type="text/javascript">

 // Add a script element as a child of the body
 function downloadJSAtOnload() {
 var element = document.createElement("script");
 element.src = "deferredfunctions.js";
 document.body.appendChild(element);
 $("#tabs").tabs(); // <==== NOTE THIS. This should theoretically run after the
                    // script has been appended, though you'll have to test this
                    // because I don't know if the JavaScript above will wait for
                    // the script to load before continuing
 }

 // Check for browser support of event handling capability
 if (window.addEventListener)
 window.addEventListener("load", downloadJSAtOnload, false);
 else if (window.attachEvent)
 window.attachEvent("onload", downloadJSAtOnload);
 else window.onload = downloadJSAtOnload;

</script>
link|improve this answer
This is EXACTLY what I tried. It DOES NOT wait to load the "deferredfunctions.js" (which I replaced with jQuery.js) before executing the 'tabs' code. So, how to get the 'tabs' code to wait for jQuery?? I could put it into the same file, but not if I'm loading jQuery from Google CDN. – Kevin P. Rice May 2 '11 at 2:36
@Kevin R: What about loading two script elements, where the second one loads from your server and contains your jQuery code? The first one is, of course, jQuery itself. – Richard Marskell - Drackir May 2 '11 at 2:54
Putting everything into one file DOES work. I tried using TWO script elements previously to load jQuery/jQuery-UI, but not to also load my page code. Let me try that... I suspect there will be problems ensuring which one loads first. – Kevin P. Rice May 2 '11 at 3:03
@Kevin R: Presumably the first one attached to the DOM would be the first executed but perhaps since your code is most likely going to be smaller than jQuery, it will be hit first. What about using the user-agent server side and controlling your included files that way? I know, it's not the best thing ever but if you're concerned about mobile browsers, it might be worth looking into. – Richard Marskell - Drackir May 2 '11 at 3:09
I may be all wet trying to defer jQuery loading in the first place, but it seems reasonable and it makes Google PageSpeed happy. Chaining events via tylermwashburn's answer seems to be the way to load everything in order. Also, check out JSL JavaScript Loader which appears to be similar to what I'm trying to do. Much thx! – Kevin P. Rice May 2 '11 at 4:30
feedback

The following code should load your scripts after the window is finished loading:

<html>
<head>
    <script>
    var jQueryLoaded = false;
    function test() {
        var myScript = document.createElement('script');
        myScript.type = 'text/javascript';
        myScript.async = true;
        myScript.src = jQueryLoaded ? 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js' : 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js';
        document.body.appendChild(myScript);

        if(!jQueryLoaded){
            alert('jquery was loaded');
            jQueryLoaded = true;
            test();
        } else {
            alert('jqueryui was loaded');   
        }
    }

    if (window.addEventListener){
        alert('window.addEventListener');
        window.addEventListener("load", test, false);
    } else if (window.attachEvent){
        alert('window.attachEvent');
        window.attachEvent("onload", test);
    } else{
        alert('window.onload');
        window.onload = test;
    }
    </script>
</head>
<body>
<p>Placeholder text goes here</p>
</body>
</html>

Worked for me in Chrome, FF and IE9 - let me know if that helps

link|improve this answer
Jeremy, thanks--however see my reply to kennis (above). I'd like jQuery to load/evaluate/parse/execute AFTER the page is loaded. – Kevin P. Rice May 2 '11 at 2:13
Edited my response to accomplish loading the scripts after the window.load/onload event has fired – Jeremy Battle May 2 '11 at 2:33
Jeremy, again thanks--I'm going to try the 'async' property... however, see the code 'Drackir' posted below which is EXACTLY what I tried. Result: YES, jQuery loads deferred, but the 'tabs' code (same as how Drackir shows it) doesn't wait for the deferred jQuery.js to load and I get "jquery undefined". Somehow, I need a callback or event to know when jquery.js is loaded and parsed. – Kevin P. Rice May 2 '11 at 2:41
A bit of a hack, but you could technically do a busy-wait loop and check to see if jQuery is loaded before running $("#tabs").tabs();. If it's not, do a setTimeout and call the function again. – Dan May 2 '11 at 2:59
1  
Kevin, edited one more time. Worked for me let me know if it works for your tabs. – Jeremy Battle May 2 '11 at 3:01
show 2 more comments
feedback

Take a look jQuery.holdReady()

"Holds or releases the execution of jQuery's ready event." (jQuery 1.6+)

http://api.jquery.com/jQuery.holdReady/

link|improve this answer
Thanks for that comment. It appears that holdReady() does not defer jQuery from loading, but just delays the Ready event. To clarify my question: Browsers spend a certain amount of time downloading and parsing all .js files before a page is rendered--mobile browsers are particularly slow to parse JS code. It is my desire to have the page render before .js files are even downloaded. Thus, the user sees the page quickly and can begin to digest the content while the .js files are downloaded and parsed. Hence, I am wishing to defer the actual download of .js files. – Kevin P. Rice May 29 '11 at 22:15
I see what you're saying. Some of the above scripts may help do that. Try uses Chrome's Audit tool to find out how to improve speed of your page – mikeycgto Jun 9 '11 at 17:33
feedback

Appears that you just need <script defer> : http://www.w3schools.com/tags/att_script_defer.asp

link|improve this answer
As per that link: "The defer attribute is only supported by Internet Explorer." The OP mentioned in a comment that they're using Chrome so I'm assuming this is a show-stopper. – Richard Marskell - Drackir May 2 '11 at 3:14
2  
FYI, there's a movement to get people to stop recommending w3schools.com. w3fools.com – Dan May 2 '11 at 3:21
I'm creating public site that must provide wide cross-browser support. Also, it's not the deferral that is the problem--it's knowing when the deferred code (jQuery) is loaded and ready for functions to be called upon it. – Kevin P. Rice May 2 '11 at 3:22
To Drackir: see dev.w3.org/html5/spec/Overview.html#script – c-smile May 2 '11 at 3:25
feedback

Your Answer

 
or
required, but never shown

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