en este caso estoy manejando TinyMCE y realmente no tengo conocimientos de js
existe la posibilidad de chekear y deschekear el valor de un checkbox dentro del editor de texto TinyMCE algo asi como este ejemplo de codigo
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <script> function valorCHECK( obj ) { if (obj.checked){ obj.form.txt1.value += ((obj.form.txt1.value != '')? '': '')+obj.value; } else{ obj.form.txt1.value = obj.form.txt1.value.replace( new RegExp( "\n*"+obj.value,"g" ),''). replace( /^,*/ ,''); } } </script> </head> <body> <form método = "post" > <input type = "checkbox" value = "Nombre" onClick = " valorCHECK ( this ) " >Nombre<br> <input type = "checkbox" value = "Apellido" onClick = " valorCHECK ( this ) " >Apellido<br> <input type = "checkbox" value = "Edad" onClick = " valorCHECK ( this ) " >Edad<br> <textarea name="txt1" id="editorT"></textarea> </form> </body> </html>