25/04/2006, 22:13
|
| | Fecha de Ingreso: octubre-2004
Mensajes: 128
Antigüedad: 20 años, 3 meses Puntos: 2 | |
entonces asi seria
Código:
<script>
nav=window.navigator.userAgent;
if(nav.indexOf("Firefox")!=-1)
// su navegador es firefox
if(nav.indexOf("MSIE")!=-1) {
if(nav.indexOf("Opera")==-1)
// su navegador es explorer
}
</script>
|