@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.