I'm using the latest (0.3.0) version of WSYIHTML5 for a message board. One of the features of the board is a quote post option. I've been trying to figure out how to append the quote to the text area.
I have the following jQuery as a test
$('.quote').click(function(){
$('textarea').append('test this');
alert($('textarea').text());
});
The alert shows the text has appended to the hidden textarea, but it does not update in the iframe of the WYSIHTML5 view.
What's weird is if I straight up append the text after initializing the WYSIHTML5, it appends just fine.
Any ideas on getting this to work?