Is it possible to redirect a user that use a specific browser to a different link, using jQuery (or JavaScript)?
I tried this but it doesn't work:
<script type="text/javascript">
if ((navigator.userAgent.indexOf('Firefox') != -1)
{
document.location = "http://other/page.com/";
}
</script>