Possible Duplicate:
load jQuery from external source if not loaded
How can I set up a backup if jquery doesn't load?
I've found and tried this:
if (typeof jQuery == 'undefined') {
alert('jquery didn't load !');
loadScript("/here/jquery.min.js");
.... // this is where i'd want to say load from '/here/jquery.js'
}
but I don't know how to call the src of a script within a script.