Thread: Chrome ...
View Single Post
Old 10-25-2009, 10:24 AM   #9 (permalink)
website-seo
Contributing Member
 
website-seo's Avatar
 
Join Date: 10-22-09
Posts: 328
iTrader: 5 / 100%
website-seo is liked by many
here it is

Google chrome is very popular. It is the browser I am using now.

If you want the script anyway, here it is.

Code:
<html> <head> <script type="text/javascript"> function detectBrowser() { var browser=navigator.appName; var b_version=navigator.appVersion; var version=parseFloat(b_version); if ((browser=="Netscape" && (version>=5)) { window.location("page that you want to go to if chrome"); } } </script> </head> <body onload="detectBrowser()"> </body> </html>
website-seo is offline   Reply With Quote