Skip to content

Instantly share code, notes, and snippets.

@alfenfebral
Created July 4, 2017 16:18
Show Gist options
  • Save alfenfebral/6af6158bdcd500ab95021ec42b1bfb44 to your computer and use it in GitHub Desktop.
Save alfenfebral/6af6158bdcd500ab95021ec42b1bfb44 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h3>Contoh Tooltip</h3>
<a href="#" data-toggle="tooltip" title="Hello World">Arahkan Mouse Kesini</a>
</div>
<script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment