How can I load a javascript file via Firebug console ?
This would be useful in development, so I don't have to modify the html code to load the script.
How can I load a javascript file via Firebug console ?
This would be useful in development, so I don't have to modify the html code to load the script.
var script = document.createElement("script");
script.src = "http://whatever.com/js/my/script.js";
document.body.appendChild(script);