My HTML page links to several JavaScript files, for example:
<script type="text/javascript" src="MyClass.js"></script>
I am debugging a WebStorm using Python SimpleHTTPServer on Windows with Chrome. I can set breakpoints in my JavaScript and WebStorm, stopping at them as expected.
However, sometimes when I make changes to my JavaScript and re-run the debugger, it runs the old code, not the updated code. If I place a breakpoint, the line on which it stops is out of sync with the place where I set the breakpoint.
How can I force update?
source share