Conditionally Loading jQuery


/ Published in: HTML
Save to your folder(s)

if window.jQuery is undefined, there must have been a problem downloading the script from the CDN. In that case, proceed to the right side of the && operator, and insert a script linking to a local version of jQuery.


Copy this code and paste it in your HTML
  1. <!-- Grab Google CDN jQuery. fall back to local if necessary -->
  2. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  3. <script>!window.jQuery && document.write('<script src="js/jquery-1.4.2.min.js"><\/script>')</script>

URL: http://net.tutsplus.com/tutorials/javascript-ajax/14-helpful-jquery-tricks-notes-and-best-practices/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.