-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathJQueryModal.html
29 lines (29 loc) · 993 Bytes
/
JQueryModal.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.css">
<script src="../node_modules/jquery/dist/jquery.js"></script>
<script src="../node_modules/bootstrap/dist/js/bootstrap.js"></script>
</head>
<body>
<div class="container">
<h2>Modal Demo</h2>
<button class="btn btn-primary" type="button" data-toggle="modal" data-target="#billSummary">Show Bill</button>
<div class="modal fade" id="billSummary">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h2>Bill Summary</h2>
</div>
<div class="modal-body">
Your Bill Details..
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>