Skip to content

Instantly share code, notes, and snippets.

@dominicmartineau
Created May 18, 2013 16:27
Show Gist options
  • Save dominicmartineau/5604996 to your computer and use it in GitHub Desktop.
Save dominicmartineau/5604996 to your computer and use it in GitHub Desktop.
Twitter Bootstrap tooltip placement based on element's position
$('.element').tooltip({
placement: function(context, source) {
if ($(source).position().top < 100) {
return 'bottom';
} else {
return 'top';
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment