Created
March 12, 2014 13:18
-
-
Save JediMindtrick/9506761 to your computer and use it in GitHub Desktop.
Working html for jQuery tooltip on table header + IE8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Instead of this,--> | |
<tr> | |
<th title="my tooltip content">Hover for tooltip</th> | |
</tr> | |
<!-- you might try this--> | |
<tr> | |
<th> | |
<div title="mytooltip content">Hover for tooltip</div> | |
</th> | |
</tr> | |
<script type="text/javascript"> | |
$('tr tr[title]').tooltip(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment