Andrew
Andrew
Ah...got it within seconds after posting this question: ``` $( '#RICH_TEXTAREA' ).rich_textarea( 'insertObject', 'Tag1', 'tag1' ); ```
Hi Yermo, if you get a chance to read this, is it possible to insert objects such as this? $('#rich_textarea').rich_textarea('insertObject', 'Visit Google'); I am noticing that inserting normal text mixed with...
For this, I basically regex matched the plain text version and used rich_textarea's insertObject to get them back as tags for text => rich text conversion.
Hi Yermo, this is a bump since you were on vacation. This is kind of odd, but rich_textarea does not like spaces.
I was trying to reconstruct a rich textarea based on plaintext. So I parsed '[o=object1] [o=object2]', needing to use insertObject on object 1, followed by a space, then insertObject on...
But actually, I brought up this issue about 2-3 weeks ago. Since then, I ended up inserting & nbsp; instead of a whitespace, which allows that as an insert in...
Ah, I see. I thought it was an insert for plaintext OR objects.