Forum Moderators: open

Message Too Old, No Replies

Check PC/MAC platform, redirect

         

MattC

5:31 pm on Feb 12, 2002 (gmt 0)

10+ Year Member



Does anyone know of a plugin that checks the Mac/PC status rather or in adsition to IE/Netscape?

Still dealing with pop-up pixel dimensions

txbakers

9:32 pm on Feb 12, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Here is the javascript I use:

var isIE = ( (navigator.appName == "Microsoft Internet Explorer"))? true:false;
var isMac = (navigator.platform == "MacPPC")?true:false;

Just test the two variables and do with the pages what you want.