-
Notifications
You must be signed in to change notification settings - Fork 0
/
popover.html
31 lines (28 loc) · 1016 Bytes
/
popover.html
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
<!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/4.1.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h3>Popover Example</h3>
<a href="#" data-toggle="popover">Toggle popover</a>
</div>
<script>
$(document).ready(function(){
var content = '<div>Bạn cần <a href="#">đăng nhập</a> để thực hiện thao tác này</div>';
$('[data-toggle="popover"]').popover({
content: content,
html: true
});
$('[data-toggle="popover"]').popover('show')
});
</script>
</body>
</html>