Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HaiyangXu/6516ae09f4f9f2270c21fb1e18eaa4a6 to your computer and use it in GitHub Desktop.
Save HaiyangXu/6516ae09f4f9f2270c21fb1e18eaa4a6 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);
@HaiyangXu
Copy link
Author

include js to chrome console

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment