We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74be90e commit 3460342Copy full SHA for 3460342
1 file changed
demos/datepicker/default.html
@@ -0,0 +1,21 @@
1
+<!doctype html>
2
+<html lang="en">
3
+<head>
4
+ <title>jQuery UI Datepicker - Default Demo</title>
5
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
6
+ <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
7
+ <script type="text/javascript" src="../../jquery-1.2.6.js"></script>
8
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
9
+ <script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
10
+ <script type="text/javascript">
11
+ $(function() {
12
+ $("#datepicker").datepicker();
13
+ })
14
+ </script>
15
+</head>
16
+<body>
17
+
18
+<input type="text" id="datepicker" />
19
20
+</body>
21
+</html>
0 commit comments