How put a text in a <textarea> using TinyMCE and jQuery

Posted by bahamut100 on Stack Overflow See other posts from Stack Overflow or by bahamut100
Published on 2010-02-18T20:07:40Z Indexed on 2010/05/01 4:07 UTC
Read the original article Hit count: 257

Filed under:
|

Hi, I have a problem, maybe due to TinyMCE.

I want to put a text in a markup with jQuery.

This is my code :

$(".page").change(function(){
  tinyMCE.triggerSave(true, true);
  $(".description").val("my text");
});

Have you an answer to this ?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about tinymce