in this case:
<p> some long text </p>
how can i know that mouse cursor is above the 'text' word?
|
in this case:
how can i know that mouse cursor is above the 'text' word? |
||||
|
|
|
Further to the two other answers, you may be able to split your paragraphs up into spans using jQuery (or javascript generally). That way, you wouldn't need to think about outputting your text with spans around the words. Let your javascript do it for you. e.g.
Note that the above code, while it works, will strip out any html inside your paragraph tags. |
|||||||||
|
|
My other answer works only in Firefox. This answer works in Chrome. (Might work in Firefox, too, I don't know.)
In your mousemove handler, call |
|||
|
|
|
To my knowledge, you can't. Only thing I can think of is to put each of the words in their own element, then apply mouse over events to those elements.
|
|||
|
|
You would probably have to break up the paragraph so that each word was contained inside of its own separate <span> element and then add ..And I think you mean "<p>some long text</p>"; backslashes are not part of HTML. |
|||
|
|
|
This a live demo for how to get a word under cursor using JavaScript based on the source code provided by Damovisa: http://jsfiddle.net/5gyRx/. |
||||
|
|
|
There is an API for this in the current CSSOM View draft: You would have to check which browser supports this, though. Firefox 7 seems not to support it at all, whereas bug reports indicate Firefox 9 will. Chrome 14 supports |
|||
|
|
|
In Firefox you can hook the mousemove event. The callback has one argument, e. In the callback, do this:
Now str has the entire text that the mouse was over. e.rangeOffset is the location of the mousepointer within that string. In your case, str would be "some long text" and e.rangeOffset would be 11 if you were over the "e" in "text". This code will get a little confused if you are in the margins, for instance when the mouse pointer is on the same line as the text but after the end of it. To fix this, you need to check that you are actually on top of text. Here's the test:
This technique works in Firefox. Doesn't work in Chrome. |
|||
|
|