I\'m just looking for a simple javascript that can check to see if the jQuery library is already loaded and if not, loads it.
Thanks in advance if you have a solutio
Try this
if(typeof($) == 'undefined' || typeof(jQuery) == 'undefined'){//JQuery do not exist //Load the Jquery from your site or any CDN }