Is there a semantically correct way of showing a tooltip in a table header cell that explains something about the column's data?
My table looks like this:
---------------------
| URL | Pageviews |
---------------------
| url/1 | 5 / 20 |
---------------------
| url/2 | 2 / 14 |
---------------------
I want the "Pageviews" text to have a tooltip that says "Week / Total" (explaining why the data looks like that).
Is abbr
the right element for me to use? (it would look like this: <th><abbr title="Week / Total">Pageviews</abbr></th>
I can't seem to find a better one. The definition says it's supposed to be used for abbreviations, which is not my case.