clickable/hoverable element on webpage

Binemyaniff

New Member
When the user clicks on (or moves their mouse over) my tables' column headers, I will use JavaScript to popup a lengthier description of the data in that column.However, in order to entice the user to move the mouse over (or click on) the column headers, I need to make them "look clickable". I think I've seen this done before using a HTML link that doesn't actually link anywhere, something like\[code\]<a href="http://stackoverflow.com/questions/4078951/#">Age</a>\[/code\]From a semantic markup point of view this seems like a bad approach, because the element isn't actually a link, I just want to make it look like a link, so that the user knows something will happen when they click on it.Is there a better approach?Thanks,Don
 
Top