-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
28 lines (25 loc) · 1.06 KB
/
demo.html
File metadata and controls
28 lines (25 loc) · 1.06 KB
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
<html>
<head>
<title>Quantitizr Demo</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="jquery.quantitizr/jquery.quantitizr.js"></script>
<link rel="stylesheet" href="jquery.quantitizr/jquery.quantitizr.css" type="text/css" />
</head>
<body>
<input type="text" class="qnt" name="qnt1" value="" /><br />
<input type="text" class="qnt" name="qnt2" value="1" /><br />
<input type="text" class="qnt" name="qnt3" value="2" /><br />
<input type="text" class="qnt" name="qnt4" value="3" /><br />
<input type="text" class="qnt" name="qnt5" value="4" /><br />
<input type="text" class="qnt" name="qnt6" value="5" /><br />
<input type="text" class="qnt" name="qnt7" value="6" /><br />
<input type="text" class="qnt" name="qnt8" value="7" /><br />
<input type="text" class="qnt" name="qnt9" value="8" /><br />
<input type="text" class="qnt" name="qnt10" value=" " /><br />
<script type="text/javascript">
$(document).ready(function() {
$(".qnt").quantitizr();
});
</script>
</body>
</html>