-
Notifications
You must be signed in to change notification settings - Fork 76
/
demo.html
56 lines (56 loc) · 1.94 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>jquery.simplyCountable.js demo</title>
<style type="text/css" media="screen">
* {font-family:Helvetica, Arial, sans-serif;}
body {width:800px;}
pre {float:right; width:300px; background:#efefef; padding:6px 12px; margin:0; font:13px 'Courier New', Courier, monospace; font-weight:bold; color:#3b3b3b;}
form {margin-bottom:30px;}
.safe , .over {padding:3px; color:white; font-weight:bold;}
.safe {background:green;}
.over {background:red;}
</style>
<script type="text/javascript" charset="utf-8" src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="jquery.simplyCountable.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function()
{
$('#demo1').simplyCountable();
$('#demo2').simplyCountable({
counter: '#counter2',
countType: 'words',
maxCount: 10,
countDirection: 'up'
});
});
</script>
</head>
<body>
<h1>jQuery Simply Countable plugin demo</h1>
<form>
<fieldset><legend>Demo 1</legend>
<p>You have <span id="counter"></span> characters left.</p>
<pre>$('#demo1').simplyCountable();</pre>
<p><textarea id="demo1" cols="50" rows="4"></textarea></p>
<p><input type="submit" value="Submit"></p>
</fieldset>
</form>
<form>
<fieldset><legend>Demo 2</legend>
<p>You have used <span id="counter2"></span> words.</p>
<pre>$('#demo2').simplyCountable({
counter: '#counter2',
countType: 'words',
maxCount: 10,
countDirection: 'up'
});</pre>
<p><textarea id="demo2" cols="50" rows="4"></textarea></p>
<p><input type="submit" value="Submit"></p>
</fieldset>
</form>
<p>Copyright © 2009-2013 <a href="http://www.aaronrussell.co.uk">Aaron Russell</a>.
</body>
</html>