If I don't have access to the development environment, then I want to have the opportunity to change front-end code on the fly by edit / replace / change javascript files. What I want is to just use the default webpage and just replace a javascript file with a local version.
I've tried adding javascript with this kind of code, with firebug:
$.getScript("mobile.js", function(){
alert("Running test.js");
});
but how do I replace it with a local file?
I think this is possible with the tool "espresso" (mac users) .. any Windows alternative?