Recently, I have worked with wysihtml5 Editor but I am not able to get the selected text of the Editor. Using JQuery I have written this code snippet but it is not working.
var len = $("#ticketmessage").val().length;
var start = $("#ticketmessage")[0].selectionStart;
var end = $("#ticketmessage")[0].selectionEnd;
var sel = $("#ticketmessage").val().substring(start, end);
Thanks & Regards
Manisha Biswas
Have you tried to use the
getSelection
method of the globalwindow
object? This is used to get the currently selected (highlighted) text on the page, e.g:Alternatively, you might need to use the
Range
interface to get the selected text, e.g:See this SO answer for some examples of use