ability to add explanatory tooltip on hover

This commit is contained in:
Ashley Blewer 2015-11-18 14:55:29 -08:00
parent 6cfefdad3a
commit 1de7b84432
2 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,7 @@
<link href="css/jquery.steps.css" rel="stylesheet" >
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/forms.js"></script>
<script src="js/js.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>

3
js/js.js Normal file
View File

@ -0,0 +1,3 @@
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})