vote up 0 vote down star

I know this isn't strictly program related, but I think I've seen this answer on SO before and lost track of it.

The specific question has to do with reading an electronic document. I find it helpful to move the cursor across the words as I'm reading them. This works great with Word documents, but I'm unable to do it with web pages. Is there a way to make a web page see and respond to cursor movement?

flag

76% accept rate

2 Answers

vote up 0 vote down

In Firefox, you can do this by going to about:config and modifying the accessibility.browsewithcaret setting. (Type "caret" into the filter field, and right click to change the value of a boolean setting)

link|flag
vote up 0 vote down

I'm not sure what you actually want to do when the cursor moves, but you can capture mouse movements over an element with said element's onMouseMove event.

Like this:

<div id="a" onMouseMove="doSomething(event.clientX, event.clientY)">
   Mouse over me!
</div>

This will send the current X and Y coordinate to the "doSomething()" function when the mouse is moved over the DIV

link|flag

Your Answer

Get an OpenID
or

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