Same question as here but I need to go to local URL\'s in Firefox
I tried with code like
var url = \"file:///E:/Test/Test.htm\"; window.location.href
I guess its not allowed to load local resource from javascript
Unless you have a local http server running:
var url = "http://localhost/MySite/Default.aspx"; window.location.href = url;
It will work