I write that in my code:
<textarea id="content" name="content" value="something"></textarea>
I want it to be this way:
but I see this instead:
How can I change it?
<textarea id="content" name="content" ></textarea>
$(function() {
$('#content').froalaEditor({
placeholderText: 'Start typing something...'
})
});
You need to put the text like this:
or you can do this with placeholder:
hope it helped you