I'm trying to find a way to display one link to an IE user and another link to all other browsers using javascript or conditional comments (or whatever it takes).
Basically...
//pseudo code
<!--[if IE]>
<a hrefie-only.html>click here!</a>
<!--[else]>
<a hrefall-other-browsers.html>click here!</a>
<![endif]-->
I don't think this is possible with conditional comment tags (which only work in internet explorer). Plus I don't think there is an else statement.
Is there a way to do this with javascript? Please help! Thanks!