-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.25 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>BOOTSTRAP HOMIE!!!</title>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap-1.2.0.min.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="jquery.bootstrappopover.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
$('a.bootstrap-popover').bootstrapPopover();
});
</script>
</head>
<body>
<br />
<br />
<br />
<br />
<br />
<br />
<div class="container">
<div class="row">
<div class="span16 columns">
<a href="#hello-thar" class="bootstrap-popover" title="Why Hello!">Click me!</a>
</div>
</div>
<div class="row">
<div class="span16 columns">
<a href="#hello-thar2" class="bootstrap-popover" title="Why Hello2!">Click me!</a>
</div>
</div>
</div>
<div style="display:none;">
<div id="hello-thar">Yes, HELLO THAR!</div>
<div id="hello-thar2">Yes, HELLO THAR2!</div>
</div>
</body>
</html>