/ Published in: jQuery
To check if jQuery library is loaded, use the following JavaScript code
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
if (typeof jQuery != 'undefined') { alert("jQuery library is loaded!"); }else{ alert("jQuery library is not found!"); }
URL: http://simply-tutorial.com/blog/2010/05/21/how-to-check-if-jquery-library-is-loaded-/