How to include JavaScript file or library in Chrome console? How to include JavaScript file or library in Chrome console? google-chrome google-chrome

How to include JavaScript file or library in Chrome console?


appendChild() is a more native way:

var script = document.createElement('script');script.type = 'text/javascript';script.src = 'script.js';document.head.appendChild(script);


Do you use some AJAX framework? Using jQuery it would be:

$.getScript('script.js');

If you're not using any framework then see the answer by Harmen.

(Maybe it is not worth to use jQuery just to do this one simple thing (or maybe it is) but if you already have it loaded then you might as well use it. I have seen websites that have jQuery loaded e.g. with Bootstrap but still use the DOM API directly in a way that is not always portable, instead of using the already loaded jQuery for that, and many people are not aware of the fact that even getElementById() doesn't work consistently on all browsers - see this answer for details.)

UPDATE:

It's been years since I wrote this answer and I think it's worth pointing out here that today you can use:

to dynamically load scripts. Those may be relevant to people reading this question.

See also: The Fluent 2014 talk by Guy Bedford: Practical Workflows for ES6 Modules.


In the modern browsers you can use the fetch to download resource(Mozilla docs) and then eval to execute it.

For example to download Angular1 you need to type:

fetch('https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular.min.js')    .then(response => response.text())    .then(text => eval(text))    .then(() => { /* now you can use your library */ })