Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/04/2005, 12:25
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses
Puntos: 772
Hola de nuevo.

He hecho una página de prueba y me ha funcionado bien:
Código PHP:
<html>
<
head>
<
script>
function 
insertCode(form,name,code) {
  
document.forms[form][name].value += code;

</script>
</head>
<body>
<form name="add_new">
<textarea name="copete"></textarea>
<input type="button" onclick="insertCode('add_new','copete','N')" />
</form>
</body>
</html> 
Saludos,