-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
31 lines (29 loc) · 974 Bytes
/
demo.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>
<meta charset="utf-8" />
<title>demo</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script src="jquery.stopwatch.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('.timed').stopwatch();
});
</script>
</head>
<body>
<div class="timed">
<span class="sw_day"></span>
<span class="sw_hour"></span>
<span class="sw_minute"></span>
<span class="sw_second"></span>
</div>
<hr />
<div class="timed" data-began="Thu Oct 19 21:30:04 -0700 2011">
<span class="sw_day"></span>
<span class="sw_hour"></span>
<span class="sw_minute"></span>
<span class="sw_second"></span>
</div>
</body>
</html>