Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/07/2014, 08:30
Avatar de Italico76
Italico76
 
Fecha de Ingreso: abril-2007
Mensajes: 3.303
Antigüedad: 17 años, 8 meses
Puntos: 292
Respuesta: Modificación de textarea no conlleva modificación de innerHTML de textarea

Un TEXTAREA no tiene tags dentro....... es algo conceptual ... es semantico, asi si funciona:

Código Javascript:
Ver original
  1. <body>
  2.     <textarea id="raro" name="abracadabra">tyg</textarea>
  3.     <div id="output"></div>
  4. </body>
  5.  
  6.  
  7. <script>
  8. window.onload = function()
  9. {
  10.     var textarea = document.getElementById("raro");
  11.    
  12.     textarea.onchange = function(){
  13.        
  14.         var output = document.getElementById("output");
  15.    
  16.         console.log(textarea.value);
  17.         output.innerHTML = textarea.value;
  18.     }
  19.    
  20. }
  21. </script>

Nota he cambiado textarea.innerHtml por textarea.value
__________________
Salu2!