23/11/2005, 14:58
|
| | | Fecha de Ingreso: mayo-2003 Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 6 meses Puntos: 5 | |
espero te sirva...
saludos Código HTML: <html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<script language="javascript">
function Desactivar() {
var myfieldset = document.getElementById("MyFieldSet");
if (myfieldset) {
if (myfieldset.hasChildNodes()) {
for (var i=0; i < myfieldset.childNodes.length; i++) {
var tipo = myfieldset.childNodes[i].type;
if (tipo == "button" || tipo == "checkbox" || tipo == "radio") { //agrega aqui otros tipos de objetos.....
myfieldset.childNodes[i].disabled = true;
}
}
}
}
}
</script>
<body onLoad="Desactivar()">
<fieldset id="MyFieldSet">
<input type="button" value="Botón">
<input type="checkbox" value="1">
<input type="radio" value="1">
</fieldset>
</body>
</html>
__________________ Saruman One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them. |