Page 1 of 1

Browser Detect Help

Posted: Tue Feb 19, 2013 3:15 pm
by DeveloperJacob
Hello,

I'm having trouble with detecting browsers in html.
What I want to do is when a user is using IE (doesn't matter what version), I want my site to navigate to
my ie.html file.

I have tried some code but they didn't work. :(

Does somebody know how to do this?

Re: Browser Detect Help

Posted: Tue Feb 19, 2013 3:17 pm
by Shim
i think not ie html file you can use a different css for ie

Re: Browser Detect Help

Posted: Tue Feb 19, 2013 3:27 pm
by Filip
Code: Select all
<!--[if IE]>
<meta http-equiv="refresh" content="2; url=ie.html">
<![endif]-->
Hope it helps

-Filip