Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RYO-mini/edb75e4188f802cec4d9 to your computer and use it in GitHub Desktop.
Save RYO-mini/edb75e4188f802cec4d9 to your computer and use it in GitHub Desktop.
var file_path;
var scripts = document.getElementsByTagName("script");
var i = scripts.length;
while (i--) {
var match = scripts[i].src.match(/(^|.*\/)left_menu\.js$/);
if (match) {
file_path = match[1];
break;
}
}
document.write('<html><head></head><body></body></html>');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment