How to remove default placeholder link from quill.js?

by elisha_langworth , in category: Javascript , 6 months ago

How to remove default placeholder link from quill.js?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by denis , 6 months ago

@elisha_langworth 

To remove the default placeholder link in Quill.js, you can set the placeholder option to an empty string when initializing the Quill editor. Here's an example code snippet:

1
2
3
4
var quill = new Quill('#editor', {
  theme: 'snow',
  placeholder: ''
});


By setting the placeholder option to an empty string, you can remove the default placeholder link in Quill.js.

Related Threads:

How to remove or change the default font in quill.js?
How to remove origin link in git?
How to remove default styles in storybook?
How to remove default storybook canvas styles?
How to use v-model in quill.js in vue 3?
How to define a static placeholder in tensorflow?