How can I select text when I mouse over a div?
Asked
Active
Viewed 1,075 times
1 Answers
0
If you mean selecting the text as if you dragged over it, read this question. Whichever approach you try, to make it happen on mouseover, use .mouseenter()
:
$('#mydiv').mouseenter( function(){
my_superduper_selection_function(this);
});

Community
- 1
- 1

Ken Redler
- 23,863
- 8
- 57
- 69