Estoy utilizando tinymce con el plugin paste for word. El código que tengo es el siguiente:
Código HTML:
<script language="javascript" type="text/javascript"> tinyMCE.init({ theme : "advanced", mode : "textareas", plugins : "paste", theme_advanced_buttons3_add : "pastetext,pasteword,selectall", paste_auto_cleanup_on_paste : true, paste_preprocess : function(pl, o) { // Content string containing the HTML from the clipboard alert(o.content); o.content = "-: CLEANED :-\n" + o.content; }, }) </script>
Alguien podria ayudarme para que no suceda?
Gracias a todos de antemano.