Issue
I am using quill editor. suppose i have a select box where i can select value from it, so that it can be inserted into the quill editor. But I want the value to be inserted at the cursor, instead of at the end or beginning of the content.
Solution
//to get the index of selection
var range = quill.getSelection();
//to insert the text at cursor
quill.insertText(range.index, text, 'bold', true);
Answered By - Adharsh Chottu
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.