Ver Mensaje Individual
  #7 (permalink)  
Antiguo 22/06/2008, 11:54
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 7 meses
Puntos: 834
Respuesta: fckeditor formatear html

Para recoger el texto con javascript, podés hacerlo así:
Código PHP:
var myf document.getElementById("FCKeditor1___Frame");
myf myf.contentWindow.document || myf.contentDocument;
var 
myf2=myf.getElementById('xEditingArea').getElementsByTagName('iframe')[0].contentWindow.document || myf.getElementById('xEditingArea').getElementsByTagName('iframe')[0].contentDocument;
alert(myf2.body.innerHTML); 
Luego le aplicás lo anterior para cambiar el formato y finalmente podés grabar el resultado en un campo oculto.

Última edición por Panino5001; 22/06/2008 a las 14:58