vote up 0 vote down star

User is on a webpage , uses his mouse to select stuff, how can i use javascript to know what has been selected?

flag
1  
Do you want the nodes, or just the text? – outis Nov 9 at 4:10

2 Answers

vote up 2 vote down

To get the raw text currently highlighted on the page you can do something like this:

function getSelectedText() {
    return window.getSelection ? window.getSelection() 
                               : document.selection.createRange().text;
}

Check an example of the above code here.

More info:

link|flag
vote up 0 vote down

If you're talking about the user dragging his mouse over text so that it's highlighted, use the Selection and Range objects (for Mozilla) and Selection and TextRange objects (for IE).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.