How to remove default placeholder link from quill.js?

by elisha_langworth , in category: Javascript , 3 days ago

How to remove default placeholder link from quill.js?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by denis , 2 days 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.