Ver Mensaje Individual
  #5 (permalink)  
Antiguo 09/06/2002, 15:57
TIO-PEPE
 
Fecha de Ingreso: marzo-2002
Mensajes: 46
Antigüedad: 22 años, 1 mes
Puntos: 0
Re: Como Pegar Texto En Un Formulario?

a ver si te vale este, no te cortes y sigue preguntando ..bye
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<script>
function inner1(){
tx.innerHTML = "He pinchado en la imagen 1"
}

function inner2(){
tx.innerHTML = "He pinchado en la imagen 2"
}
</script>

</head>
<body>

<textarea id=tx></textarea>
<img src="../pincha1.gif" onclick="inner1()"></img>
<img src="../pincha2.gif" onclick="inner2()"></img>

</body>
</html>