Saturday, June 9, 2018

Can I embed html formatting inside of a textarea in ionic

This is not possible to do with a textarea. 

Solution for this :

What you are looking for is an content editable div, which is very easily done by below code :

<div contenteditable=”true”> </div>
The contenteditable attribute specifies whether the content of an element is editable or not.

No comments:

Post a Comment