लोड हो रहा है jQuery - सीएसएस-ट्रिक्स

Anonim

Google API के साथ लोड करें

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

Google से सीधा लिंक

यदि लोड किया गया है, तो जांचें कि क्या लोड किया गया है

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 )); ) )