Hola
Panino5001
Yo también he estado haciendo pruebas y me he encontrado con algo que no entiendo. Tengo este código:
Código PHP:
<html>
<head>
<script type="text/javascript">
function pepe() {
obj = document.getElementById('algo');
obj.setAttribute('value','texto');
}
</script>
</head>
<body>
<input type="text" id="algo" />
<input type="button" onclick="pepe()" />
</body>
</html>
Si lo ejecutas y pulsas el botón, funciona bien, pero si escribes algo en el campo de texto y luego pulsas el botón, no hace nada
Saludos,