The website in question currently checks, via JavaScript, to see if the browser is IE or Netscape. The commands use a test like:
if (navigator.appName == "Microsoft Internet Explorer"...)
the AppName for MSIE is as above, and the AppName for Netscape is "Netscape".
My question is where can I find out the AppNames for Firefox, Gecko, Opera, etc. Now that Firefox is becoming popular, I would like to at least get that one working.
Thank you very much.
if (navigator.appName == "Microsoft Internet Explorer"...)
the AppName for MSIE is as above, and the AppName for Netscape is "Netscape".
My question is where can I find out the AppNames for Firefox, Gecko, Opera, etc. Now that Firefox is becoming popular, I would like to at least get that one working.
Thank you very much.