How put a text in a <textarea> using TinyMCE and jQuery
- by bahamut100
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 ?