forked from sciactive/pnotify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
testing.html
25 lines (24 loc) · 1.73 KB
/
testing.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
<html>
<head>
<title>PNotify Testing</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<script type="text/javascript" src="jquery.pnotify.js"></script>
<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/themes/ui-lightness/jquery-ui.css" />
<link type="text/css" rel="stylesheet" href="includes/bootstrap/css/bootstrap.normal.css" />
<link type="text/css" rel="stylesheet" href="jquery.pnotify.default.css" />
</head>
<body>
<h2>This is Foo - the home of a sticky note.</h2>
<script>
$(function(){
$.pnotify({
pnotify_title: 'Sticky Notice',
pnotify_text: 'I\'m a sticky notice.',
pnotify_hide: false
});
// If this blinky works, then it ran the above function.
$("h2").hide(400).show(400);
});
</script>
</body>
</html>