I've found a little script here in stackoverflow which allows me to load the JQuery lib from Google with a fallback to the local server. So I implement this in my site.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"></script> <script>window.jQuery || document.write('<script src="js/jquery-1.6.4.min.js">\x3C/script>')</script> But firebug show me a syntax error after implementation:
syntax error window.jQuery || document.write('...uery-1.6.4.min.js">\x3C/script>') Someone knows a workaround or a fix?
Kind Regards