Tagged Questions
21
votes
4answers
9k views
Prevent text selection after double click
I'm handling the dblclick event on a span in my web app. A side-effect is that the double click selects text on the page. How can I prevent this selection from happening?
1
vote
3answers
2k views
Issue with IE Selection and Range
I'm trying to get the start element and the end element of a selection and the offset of the selection in each, i do this in firefox as follows:
var delselection = window.getSelection();
var ...