Ocultar todas las imagenes con javascript , .
Respuestas a la pregunta
Contestado por
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Campo 1:
Campo 2:
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Campo 1:
Campo 2:
Otras preguntas
Religión,
hace 7 meses
Geografía,
hace 7 meses
Matemáticas,
hace 7 meses
Historia,
hace 1 año
Ciencias Sociales,
hace 1 año
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script type="text/javascript">
function verform()
{
document.getElementById("frm").style.visibility="visible";
document.getElementById("img").style.visibility="hidden";
}
</script>
<form id="frm" style="visibility='hidden'">
Campo 1: <input type="text" name="firstname" size="20"><br>
Campo 2: <input type="text" name="lastname" size="20"><br>
</form>
<input type="button" onclick="verform()" value="Mostrar">
<input type="image" onclick="verform