Skip to content

Instantly share code, notes, and snippets.

@micmath
Created November 18, 2011 13:58
Show Gist options
  • Save micmath/1376518 to your computer and use it in GitHub Desktop.
Save micmath/1376518 to your computer and use it in GitHub Desktop.
function findMyOwnTag(mySrc) {
var scripts = document.getElementsByTagName('script');
for (var i = scripts.length-1; i >= 0; i--) {
if (scripts[i].src && scripts[i].src.indexOf(mySrc) > -1) {
return scripts[i]
}
}
}
myScriptNode = findMyOwnTag('bloader.js');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment