You can select a part of a web page with the mouse.
I know that I can get the currently selected text but how can I get the DOM element which contains the start or end of the current selection?
|
You can select a part of a web page with the mouse. I know that I can get the currently selected text but how can I get the DOM element which contains the start or end of the current selection? |
|||
|
|
|
In IE, use document.selection.createRange().parentElement() and in real browsers use window.getSelection().getRangeAt(0).startContainer.parentNode. Something like this:
|
|||||
|
|
InvisibleBacon's solution won't work in older versions of WebKit, including (I think) Safari 2, which is missing the It will also give you inconsistent results between browsers. In the IE case you will get the innermost element that contains the whole selection, while the case for other browsers will merely give you the parent of the container node for the start of the selection, which assumes the boundary is a text node (not necessarily the case). The following will return the container element of the start or end boundary of the current selection, using the boolean
|
||||
|
|