Forked from netsuite/include javascript file from chrome console for debuggin.js
Created
March 14, 2018 08:48
-
-
Save HaiyangXu/6516ae09f4f9f2270c21fb1e18eaa4a6 to your computer and use it in GitHub Desktop.
js: include javascript file from chrome console for debuggin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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
include js to chrome console