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
Load script from Javascript by adding a tag:
var fileref=document.createElement('script') fileref.setAttribute("type","text/javascript") fileref.setAttribute("src", filename) document.getElementsByTagName("head")[0].appendChild(fileref)