How to set Froala editor default text?

4.1k Views Asked by At

I write that in my code:

<textarea id="content" name="content" value="something"></textarea>

I want it to be this way:

enter image description here

but I see this instead:

enter image description here

How can I change it?

3

There are 3 best solutions below

0
On BEST ANSWER

You need to put the text like this:

<textarea id="content" name="content" value="something">something</textarea>

or you can do this with placeholder:

<textarea id="content" name="content" value="something" placeholder="something"></textarea>

hope it helped you

2
On
<textarea id="content" name="content" ></textarea>

  $(function() {
    $('#content').froalaEditor({
      placeholderText: 'Start typing something...'
    })
  });
0
On

React

The way to set default content (aka a textarea's defaultValue) in Froala WYSIWYG React is to use the prop model.

<FroalaEditor
  model="<div>HTML String</div>"
  onModelChange={handleModelChange}
/>

Ref: https://github.com/froala/react-froala-wysiwyg