Since Modernizr.load and Yepnope are asynchronous loaders, is it better performance-wise to use them in the <head> or at the end of the page?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

It depends on the resources being loaded. See this thread where Yepnope developer Alex Sexton says to combine all the resources into one call to the loader. In practice, if any of the resources you want to load with Modernizr.load or Yepnope affect what the user sees or needs when the page first loads, then IMO in most cases you want to call the loader after your critical resources but still in the <head>.

link|improve this answer
feedback

I think it is better to load them in the bottom page.

Modernizer and Yepnope need first be loaded in the page to load other scripts. So, when you add the <script src="modernizer.js"> you are blocking the rendering time in the browser. That happens because the browser stop all rendering while the script is downloading, compiling and executing.

As yahoo and google says defer loading scripts is always good.

In the other hand, Google Analytics has an async mode. That allows you to start to download it in without blocking the browser downloading and rendering.

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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