Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/12/2011, 19:22
yoniti7784
 
Fecha de Ingreso: mayo-2011
Ubicación: sinaloa
Mensajes: 150
Antigüedad: 13 años, 7 meses
Puntos: 4
Respuesta: validar textarea ckeditor con javascript

revisa este ejemplo

Código HTML:
Ver original
  1. </head>
  2.     <script type="text/javascript">
  3.         function texto(){
  4.             valor = document.getElementById("texto_caja").value;
  5.             alert(valor);
  6.         }
  7.     </script>
  8.     <input type="text" id="texto_caja"><br>
  9.     <input type="button" id="boton" onclick="texto();" value="boton"><br>
  10.     <p>Holamundo</p>
  11. </body>
  12. </html>