I'm currently testing browser compatibility with IE7 for an app that I built initially for use with Firefox. The assumption at the time within our organization was that we could get everyone to use Firefox, but that's been called into question, so here I am. As a result, I have used many Firefox specific features and attributes that I need to check for and replace with equivalents. In order to do this I've found that I need to extensively debug the javascript to find the incompatible areas.
We use Windows exclusively here, so I don't need to test compatibility in other operating systems, at least not yet.
In order to immediately debug code changes, I need to run a test locally, but if I hit F5, it opens in Firefox until I go change the default browser.
Is there a way in Visual Studio to specify that a debug session should be opened in a certain browser, and a way to quickly change that, or otherwise, is there some batch or script that can be used to quickly change the default browser?
Also, any other tips for browser-compatibility testing?