a ok pero esa no es mi pagina ... y raro estoy con firefox y me carga perfectamente
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú<html>
<head>
<meta http-equiv="content-type" content="text/html; ">
<meta name="generator" content="PSPad editor, www.pspad.com">
<title> :: Comunidad Codificada ::</title>
<script>
window.onload = function(){
var miCheckbox = document.getElementById('miCheckbox');
miCheckbox.onclick = function(){
var miSelect = document.getElementById('miSelect');
if(miCheckbox.checked == true)
miSelect.disabled = 'disabled';
if(miCheckbox.checked == false)
miSelect.disabled = '';
}
}
</script>
</head>
<body>
<select id="miSelect">
<option value="0">a</option>
<option value="1">b</option>
<option value="2">c</option>
</select>
<input type="checkbox" id="miCheckbox">
</body>
</html>