Get started with bulma-tooltip CDN
MIT licensed
Bulma Tooltip is a lightweight library for adding tooltips to Bulma elements.
Tags:- tooltip
- ui
- component
- extension
- html
- html5
- css3
- sass
- bulma
- bulmaio
- bulma.io
Stable version
Copied!
How to start using bulma-tooltip CDN
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.cdnhub.io/bulma-tooltip/1.2.0/bulma-tooltip.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bulma-tooltip.min.js"></script>
</head>
<body>
<button class="button is-primary is-large" data-tooltip="Hover over me">Hover me
</button>
<script>
$(document).ready(function() {
$('[data-tooltip]').tooltip();
});
</script>
</body>
</html>
Copied!
Copied!