T
Timo
Assume we have this html:
<span>the quick brown fox</span>
and the mouse is hovering over the word "fox". Using javascript, is it
possible to determine the word under the mouse *without* introducing
additional elements such as an anchor?
//undesirable:
<span>the quick brown <a id='fox'>fox</a></span>
Thanks
Timo
<span>the quick brown fox</span>
and the mouse is hovering over the word "fox". Using javascript, is it
possible to determine the word under the mouse *without* introducing
additional elements such as an anchor?
//undesirable:
<span>the quick brown <a id='fox'>fox</a></span>
Thanks
Timo