Skip to content

Instantly share code, notes, and snippets.

@stoll
Last active August 29, 2015 14:20
Show Gist options
  • Select an option

  • Save stoll/36dfed3f2bfa322f54b7 to your computer and use it in GitHub Desktop.

Select an option

Save stoll/36dfed3f2bfa322f54b7 to your computer and use it in GitHub Desktop.
Tooltips Example - Bootstrap 3
<!-- Tooltip example -->
<button type="button" class="btn btn-default"
data-toggle="tooltip"
data-placement="top"
title="Tooltip on top">Tooltip on top</button>
<!-- The following code will enable all tooltips in the document -->
<script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment