forked from miniJs/miniNotification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 909 Bytes
/
index.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
32
33
34
35
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>miniNotification - jQuery Plugin</title>
<link rel="stylesheet" href="css/site.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="container">
<header>
<div id="mini-notification">
<p>The notification has been successfully displayed</p>
</div>
</header>
<div id="main">
<h1><strong>miniNotification demo</strong> - jQuery Plugin</h1>
</div>
</div>
<!-- end of #container -->
<script src="js/libs/jquery.min.js"></script>
<script src="js/miniNotification.js"></script>
<script>
$(function() {
$('#mini-notification').miniNotification({closeButton: true, closeButtonText: '[hide]'});
});
</script>
</body>
</html>