Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save netsuite/8339166 to your computer and use it in GitHub Desktop.
Save netsuite/8339166 to your computer and use it in GitHub Desktop.
js: include javascript file from chrome console for debuggin
// Include javascript file in chrome console
var script= document.createElement('script');
script.type= 'text/javascript';
script.src= 'script.js';
document.head.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment