Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 2 down vote accepted

I believe that the setCode method is what you need. Just check it out at the documentation: http://imperavi.com/redactor/docs/api/

$('#description').setCode ('<p>hello</p>');
share|improve this answer
Note that you can use it without the <p> tag but it's not a good idea... – Robyflc Oct 29 '12 at 20:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.