Reputation: 319
I am wondering if there is a way to redirect users using a specific browser to a different page?
Upvotes: 0
Views: 101
Reputation: 99909
<!--[if IE]>
<script> window.location='http://getfirefox.com'; </script>
<![endif]-->
Upvotes: 2
Reputation: 8434
First you could use JavaScript to detect the browser, and then you could set the window.location
variable for the redirect.
Upvotes: 1