Regarding the browser option for http://www.jshint.com, it is meant only to provision common browser defined globals:
This option defines globals exposed by modern browsers: all the way
from good ol' document and navigator to the HTML5 FileReader and other
new developments in the browser world.
Note: this option doesn't expose variables like alert or console. See
option devel for more information.
source: http://www.jshint.com/options/
I'm not aware of any tool that will do what you ask. Instead I caution that although you will likely have a number of JavaScript related issues (errors, bugs, incompatible APIs, missing/alternate functionality etc.) those will be relatively easily handled. Your real investment will be in validating the resulting markup, css & functionality of the website itself across the browser & OS matrix you are targeting, and best to my knowledge, no static code analysis tool will help that.
You will need to do this the hard way which is to create and execute a plan for this migration. You might look into leveraging many of the existing JavaScript frameworks that facilitate cross browser development (jQuery, Mootools, Prototype, Dojo just to name a few).
Also I'm a big fan of using VirtualBox to create and run virtual machines that I can install the various browser & OS combinations I'm testing. But before that I would start with any number of the following cross browser testing solutions such as (but not limited to):
You will likely find the 80/20 rule will apply to this migration. 20% of your time will net you 80% of the browser compatibility you desire, and 80% of the time will be spent getting the last 20% working :)
Oh and finally since this will likely result in a fair bit of code churn, I highly suggest investing in unit tests where you can ;)
cheers & good luck,
Marc.
<!DOCTYPE html>2) load the site into firefox 10 and look in the console for crap and fix that – mplungjan Apr 12 '12 at 20:35