-
Notifications
You must be signed in to change notification settings - Fork 8
/
dateEntryBasic.html
25 lines (25 loc) · 1.09 KB
/
dateEntryBasic.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>jQuery Date Entry</title>
<link type="text/css" href="jquery.dateentry.css" rel="stylesheet">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.plugin.js"></script>
<script type="text/javascript" src="jquery.dateentry.js"></script>
<script type="text/javascript">
$(function () {
$('#defaultEntry').dateEntry();
});
</script>
</head>
<body>
<h1>jQuery Date Entry Basics</h1>
<p>This page demonstrates the very basics of the
<a href="http://keith-wood.name/dateEntry.html">jQuery Date Entry plugin</a>.
It contains the minimum requirements for using the plugin and
can be used as the basis for your own experimentation.</p>
<p>For more detail see the <a href="http://keith-wood.name/dateEntryRef.html">documentation reference</a> page.</p>
<p>Enter your date: <input type="text" id="defaultEntry" size="10"></p>
</body>
</html>