Add hover text without javascript like we hover on a user's reputation

Ash picture Ash · Jun 13, 2012 · Viewed 361.8k times · Source

In stackoverflow, when we hover on a user's reputation we see a text. I have seen this at many places and the source code tells me that it can be done without js. And i tried and got only this-

 <div="text">hover me</div>

Answer

gcochard picture gcochard · Jun 13, 2012

Use the title attribute, for example:

<div title="them's hoverin' words">hover me</div>

or:

<span title="them's hoverin' words">hover me</span>