I'm viewing this website that has a client side javascript error caused by the scripts being loaded in the wrong order. Problem is I don't own this source, but I really need to use the site ASAP.
Is there a browser/browser plugin that will let me fix this in the browser and let me continue to use the page? The problem is that since this is loaded in the head element, if I modify the html the JS error has already occurred. And if I refresh the changes (at least in chrome) my local modifications have disappeared.
Specifically, the html is like this:
<script language="javascript" src="/scripts/util.js" type="text/javascript"></script> <script language="javascript" src="/scripts/scriptaculous/prototype.js" type="text/javascript"></script> <script language="javascript" src="/scripts/scriptaculous/scriptaculous.js" type="text/javascript"></script> And to fix the bug, it would need to be like this:
<script language="javascript" src="/scripts/scriptaculous/prototype.js" type="text/javascript"></script> <script language="javascript" src="/scripts/scriptaculous/scriptaculous.js" type="text/javascript"></script> <script language="javascript" src="/scripts/util.js" type="text/javascript"></script> Notice how the util.js moved to the bottom.