-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery ui.html
More file actions
35 lines (35 loc) · 876 Bytes
/
jquery ui.html
File metadata and controls
35 lines (35 loc) · 876 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>jQuery UI</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- jQuery UI font sizes are relative to document's,
so set a base size here. -->
<style type="text/css">
body {
font-size: 12px;
font-family: sans-serif
}
</style>
<!-- Load the jQuery UI style sheet. -->
<link rel="stylesheet" href="
jquery-ui.css"
type="text/css" media="all" />
<!-- Load jQuery. -->
<script src="jquery.js"></script>
<!-- Load jQuery UI. -->
<script src="jquery-ui.min.js"
type="text/javascript"></script>
<script>
// On DOM loaded, initialize a date picker widget on the input element
// with id of 'datepicker'.
$(function() {
$("#datepicker").datepicker();
});
</script>
</head>
<body>
<!-- The following input element will be turned into a date picker. -->
<p>Enter Date: <input type="text" id="datepicker"></p>
</body>
</html>