Necesitaría saber si se puede diferenciar el sistema operativo además del navegador. Estoy un utilizando un script para seleccionar navegador, pero el menú me sale en una posición diferente en Firefox para Mac o para PC... :(
¿Alguien puede ayudarme? Este es mi código...
Muchas graciaaaas!!!!!
Código HTML:
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script> <script language="JavaScript"> <!-- if(navigator.userAgent.match("Firefox")) { document.write('<link href="css/mozilla.css" rel="stylesheet" type="text/css" />'); } if(navigator.userAgent.match("IE 6")) { document.write('<link href="css/ie.css" rel="stylesheet" type="text/css" />'); } if(navigator.userAgent.match("IE 7")) { document.write('<link href="css/ie.css" rel="stylesheet" type="text/css" />'); } if(navigator.userAgent.match("IE 8")) { document.write('<link href="css/ie8.css" rel="stylesheet" type="text/css" />'); } if(navigator.userAgent.match("IE 9")) { document.write('<link href="css/ie9.css" rel="stylesheet" type="text/css" />'); } if(navigator.userAgent.match("Chrome")) { document.write('<link href="css/chrome.css" rel="stylesheet" type="text/css" />'); } //--> </script>