Forum Moderators: open
if ((navigator.userAgent.indexOf("MSIE")!=-1) ¦¦ (navigator.userAgent.indexOf("Mac")!=-1)) top.location.href = [10.23.33.3...]
. . . top.location='myurl';
But I have to ask - are you intending to go to this URL if it's ANY MSIE or JUST MSIE for Mac?
If the first is correct, you are good, the ¦¦ is "or" so it's going to redirect for either. If you want to redirect only MSIE Mac, you need to change ¦¦ to &&
if ((navigator.userAgent.indexOf("MSIE")!=-1) && (navigator.userAgent.indexOf("Mac")!=-1)) { top.location= 'http://10.23.33.3/jab/index-ie.html'; }