Jump to content

ayuda javascrpipt


Recommended Posts

Estimados.

 

Como puedo hacer un pequeño javascript o otro lenguaje que cuando alguien abre la web con explorer 6 o inferior le salga un mensaje o direccione a otro link...

 

saludos ;)

 

Viendo tu otro post, te reptito no te calientes la cabeza...

 

Pero es facil

 

<?

$get = 0;

$user = $_SERVER['HTTP_USER_AGENT'];

$ie6Name = "ACA EL NOMBRE DE IE6 (no se cual es) creo que es IE 6.0";

if(strpos($ie6Name, $user) === false){

$get = 1;

}

?>

<html>

<head>

function ie6warn(see){

if(see == 1){

alert("Tu navegador es como la ra...");

}

}

</head>

<body onload="ie6warn(<?=$get;?>)">

<body>

</html>

Edited by alvaroxz
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...