I have a textarea field with an id called "description". But it's rendered by a WHYSIWYG editor called redactor.
How can I use jquery to input something in the textarea?
I tried:
$('#description').val('hello').blur();
and
$('#description').val('hello');
But both not works.
Any ideas?