I’m pretty sure the answer is no, but thought I’d ask anyway.
If my site references a scripted named ‘whatever.js’, is it possible to get ‘whatever.js’ from within that script? Like:
var scriptName = ??? if (typeof jQuery !== 'function') { throw new Error( 'jQuery's script needs to be loaded before ' + scriptName + '. Check the <script> tag order.'); }
Probably more trouble than it’s worth for dependency checking, but what the hell.
Tested in: FF 3.0.8, Chrome 1.0.154.53, IE6
See also: How may I reference the script tag that loaded the currently-executing script?