Que tal gente, recurre a uds. porque como dice el topico tengo problemas con el metodo getElementById.
Les estaria muy agradecido si me dan una mano !
El error que me aparece en el IExplorer es al ejecutar el siguiente codigo:
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<script language="JavaScript" type="text/JavaScript">
function cambiar(id) {
document.getElementById("im_" + id).src = "images/imagen1.gif"
}
</script>
<A style="CURSOR: hand" onclick="cambiar(01)">
<img id="im_01" src="images/imagen2.gif">
</A>
</body>
</html>