Carregando jQuery - CSS-Tricks

Anonim

Carregar com API do Google

 google.load("jquery", "1.2.6"); 

Link direto para o Google

Verifique se carregado, carregue apenas se descarregado

var jQueryScriptOutputted = false; function initJQuery() ( //if the jQuery object isn't available if (typeof(jQuery) == 'undefined') ( if (! jQueryScriptOutputted) ( //only output the script once… jQueryScriptOutputted = true; //output the script (load it from google api) document.write(""); ) setTimeout("initJQuery()", 50); ) else ( $(function() ( //do anything that needs to be done on document.ready )); ) )