Skip to content

Instantly share code, notes, and snippets.

@atstyle
Created January 28, 2014 15:29
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 atstyle/8669670 to your computer and use it in GitHub Desktop.
Save atstyle/8669670 to your computer and use it in GitHub Desktop.
Bootstrapでツールチップ
<a href="#" rel="tooltip" data-placement="bottom" data-original-title="this is tooltip">tooltip</a>
<a href="#" rel="tooltip" data-toggle="tooltip" data-placement="bottom" title="this is tooltip">tooltip</a>
<script>
jQuery(function($){
$('a[rel=tooltip]').tooltip();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment