Reputation: 26095
I want to serve mobile content for browsers older than IE7. All I could find on Google was that the User Agent for IE 6 is "MSIE 6". What about IE 5 and below? And Netscape and early versions of FF and Opera?
Upvotes: 3
Views: 10871
Reputation: 20235
This site has the user agent strings for most browsers (old versions and new versions). http://www.useragentstring.com/pages/useragentstring.php
Internet Explorer: http://www.useragentstring.com/pages/useragentstring.php?name=Internet+Explorer
Firefox: http://www.useragentstring.com/pages/useragentstring.php?name=Firefox
Opera: http://www.useragentstring.com/pages/useragentstring.php?name=Opera
Upvotes: 6
Reputation: 22555
This seems like a pretty exhaustive list. - Browser ID Strings (aka User Agent ID)
Upvotes: 0
Reputation: 25455
If you want to serve the same content but styled differently a better approach is CSS media queries.
To support really old browsers from microsoft conditional comments are easy to implement as well.
Any older than that I would strongly recommend not doing anything for. On the contrary suggest to those users to upgrade to newer browsers.
You can still find user agent strings on sites like http://www.user-agents.org/
Upvotes: 0
Reputation: 14477
user-agents.org has a pretty comprehensive list of user agents including browsers, spiders, robots and crawlers.
Upvotes: 0