Your Ad Here

Posted By

aelien on 07/09/10


Tagged


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

jfherring


Offline jQuery


 / Published in: jQuery
 

When Google or another CDN is offline use this snippet to include a local jquery file

  1. if(typeof jQuery == 'undefined'){
  2. //alert('usando local');
  3. document.write(unescape("%3Cscript src='path/to/local/jquery-1.4.2.min.js' type='text/javascript'%3E%3C/script%3E"));
  4. }

Report this snippet  

You need to login to post a comment.