|
How do I know if jQuery is loaded on the page? If not loaded on the page as I do for inject it on the page? |
|
Hello, you can use window.jQuery, just like it : if(window.jQuery){ alert('loaded'); }else{ alert('no'); } You can easily inject it on the page if you use Google AJAX Libraries API, with google.load() |


