Lo hago asi, pero no me funciona:
Código:
Espero que me puedan ayudar, Gracias. function FKC(){ document.getElementById("FCKeditor1").value="HOLA"; }
| |||
Funcion con FCKeditor bueno, lo que quiero lograr es en una funcion javascript llamar al value de el editor FCKeditor Lo hago asi, pero no me funciona:
Código:
Espero que me puedan ayudar, Gracias. function FKC(){ document.getElementById("FCKeditor1").value="HOLA"; } |
| ||||
Re: Funcion con FCKeditor Fijate aquí: http://www.forosdelweb.com/2263661-post4.html
__________________ Fast, lightweight, cross-platform framework for building incredible, powerful JavaScript applications |
| ||||
Re: Funcion con FCKeditor Básicamente captura el html que se genera mediante el fckeditor y lo muestra en un alert. Y funcionar, funciona perfectamente, acabo de probarlo nuevamente, más allá de que a otro usuario le funcionó también días atrás. Te paso la url al post completo donde tratamos el tema: http://www.forosdelweb.com/f13/como-...editor-551605/
__________________ Fast, lightweight, cross-platform framework for building incredible, powerful JavaScript applications |
| |||
Re: Funcion con FCKeditor Código HTML: <head> <script language="JavaScript"> function value(){ var myf = document.getElementById("FCKeditor1___Frame"); myf = myf.contentWindow.document || myf.contentDocument; var myf2=myf.getElementById('xEditingArea').getElementsByTagName('iframe')[0].contentWindow || myf.getElementById('xEditingArea').getElementsByTagName('iframe')[0].contentDocument; alert(myf2.document.body.innerHTML); } </script> </head> <iframe src="copete_fck.php" id="FCKeditor1___Frame" name="FCKeditor1___Frame"></iframe> <form name="form1"> <input type="button" onclick="JavaScript:value();" value="mostrar"> </form> el fck tiene de value predefinido un msj cargado por PHP Código PHP: Última edición por kokoou; 05/02/2008 a las 04:05 |
| ||||
Re: Funcion con FCKeditor Y qué error te aparece?
__________________ Fast, lightweight, cross-platform framework for building incredible, powerful JavaScript applications |