Skip to content

Instantly share code, notes, and snippets.

@JediMindtrick
Created March 12, 2014 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JediMindtrick/9506761 to your computer and use it in GitHub Desktop.
Save JediMindtrick/9506761 to your computer and use it in GitHub Desktop.
Working html for jQuery tooltip on table header + IE8
<!--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