Skip to content

Instantly share code, notes, and snippets.

@Tarabyte
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tarabyte/8aae06264126867b3560 to your computer and use it in GitHub Desktop.
Save Tarabyte/8aae06264126867b3560 to your computer and use it in GitHub Desktop.
Get path from script
var id = 'id' + (Math.random()*1e6|0).toString(16);
document.write('<script id="' + id + '" type="text/noexec"></script>');
var marker = document.getElementById(id);
alert(marker.previousElementSibling.src||'inline');
marker.parentNode.removeChild(marker);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment