Skip to content

Instantly share code, notes, and snippets.

@stevelippert
Created February 21, 2014 15:56
Show Gist options
  • Select an option

  • Save stevelippert/9136835 to your computer and use it in GitHub Desktop.

Select an option

Save stevelippert/9136835 to your computer and use it in GitHub Desktop.
jQueryUI Tooltip Init, ignore a div
$(function () {
$( document ).tooltip({
content: function () {
return $(this).not('#some_div *[title]').prop('title');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment