As title said, i want to check wether the selected text is paragraph or belong to two different paragraph or an inline text,
I am using this java script code for getting text.
var range = window.getSelection().getRangeAt(0);
var selectionContents = range.extractContents();
So need to check for selectionContents
.
Thanks in advance.