Un ejemplo para que no se carge con IE:
Código javascript
:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>No IE</title>
<script type="text/javascript">
<!--
onload=function(){
if(!(window.attachEvent&&navigator.userAgent.indexOf('Opera') === -1)){
document.getElementById('cartelMal').style.display='none';
document.getElementById('web').style.display='block';
}
};
-->
</script>
<style type="text/css">
#cartelMal {
background-color: #FFD9D9;
padding: 5px;
border: 1px solid #FF0000;
}
</style>
</head>
<body>
<div id="cartelMal">Usa IE y no puedes ver esta web!</div>
<div id="web" style="display:none;">No usas IE! que bien. ahora puedes ver esta web.<br />
contenido<br />
...<br />
...<br />
...<br />
...<br />
...<br />
...<br />
...<br />
...<br />
...<br />
...<br />
...<br />
...<br />
</div>
</body>
</html>
y si queres
Julcar que solo se vea con IE, solo sacale el ! al if y cambia los carteles.
Suerte
Salu2