HtmlBox JQuery plugin
I'm using the HtmlBox 2.8 (http://remiya.com/cms/projects/jquery-plugins/htmlbox/)
Turns the textarea to a richtext editor.when i change the value of the textarea, $('#Survey_Value').val(data.Value);
how to change the text the text in the rich text editor开发者_运维技巧?
HtmlBox has a set_text(html)
method you can call. Store the original htmlbox call you have now:
var box = $('#Survey_Value').htmlbox();
When you have new data call this:
box.set_text(data.Value);
This method accepts html and will set your <textarea>
's value as well.
精彩评论