Tengo el siguiente código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<head>
<title>XHTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<script type="text/javascript">
<!--
//<![CDATA[
function inhabilitar(){
return false
}
document.oncontextmenu=inhabilitar
//]]>
// -->
</script>
</head>
<body>
<p>
En esta página el botón derecho no funciona
The context menu never displays when you right-click in this box.
<img src="logo_w3c_xhtml1.gif" />
</p>
</body>
</html>
Como se ve con un script muy sencillito.
Cuando visualizo la página desde el servidor no se activa el bloquedor de elementos emergentes del IE y el script me funciona.
Cuando visualizo la página ejecutando el fichero desde mi disco duro local, si se activa el bloqueador y el script no funciona.
Alguien me puede decir a que es debido esto?, Porque hace eso el IE?
Gracias