Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Finishing up a redesign of my website and at the end of the page, right before the closing body tag looks like a mess of scripts to me:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>'</script>
<script src="//static.adaminfinitum.com/js/slider.min.js"></script>
<script async src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.1.0/js/bootstrap.min.js"></script>
<script async>
  $(function(){
    $('#slider').anythingSlider();
  });
</script> 
<script>
  Modernizr.load({
    test: Modernizr.canvas,
    yep: [      
     ,'//static.adaminfinitum.com/js/origami.js'      
    ],
    callback: function(url, testResult) {
    }
  });
  Modernizr.load({
    test: Modernizr.fontface,
    yep: [      
     ,'css!//static.adaminfinitum.com/css/lazy-webfonts.css'      
    ],
    callback: function(url, testResult) {
    }
  });
</script> 
<script async>
  var _gaq=[['_setAccount','UA-27155590-1'],['_trackPageview']];
  (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0]; g.async=true;
  g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
  s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
<script async>
function googleTranslateElementInit() {
  new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.FloatPosition.TOP_RIGHT, gaTrack: true, gaId: 'UA-27155590-1'}, 'google_translate_element');
}
</script>
<script async src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>

I am pretty new to scripting but I have managed to figure out enough for it to function as I want (in the head there is a link/script to a modernizr.js file as well as the initial css).

I understand the google jquery CDN, and the local fall back. Through trial and error I have figured out that if I add the 'async' attribute to the slider.min.js file it doesn't work.

This code works just fine but it seems like anytime I start tinkering something breaks.

I know modernizr.load is yepnope.js and their website says the current version (1.5) uses something called Inject.js and Inject.css but I cant quite make sense of it.

I only want to load the script for canvas and the extra glyphs for webfonts if they are supported (I do test with Modernizr) so the callback isn't important to me, it's there because that's the code I found in the instructions and I'm afraid to mess with it.

I read 6 or 8 things on here (on this topic, way more trying to figure out lazy-loading) and nothing seemed to fit so here are my basic questions:

-How much of this can move off page?

-How much is extraneous for my purposes?

-Are there 'better' methods for doing the same things?

-What whitespace can I safely remove?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.