Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $("body#tinymce").html("mytext");
  2.  
  3. var id = "yourTextAreaId";
  4. var tmce_el = tinyMCE.get(id);
  5. if (tmce_el != undefined)
  6. {
  7. tmce_el.execCommand('mceSetContent', false, value);
  8. }
  9. else
  10. {
  11. document.getElementById(id).innerHTML = value;
  12. document.getElementById(id).value = value;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement