aboutsummaryrefslogtreecommitdiffstats
path: root/demos/datepicker/date-formats.html
blob: a234e223b36b1431f8e3592ed9eb1e677ef79c64 (plain)
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
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>jQuery UI Datepicker - Format date</title>
	<link rel="stylesheet" href="../../themes/base/all.css">
	<link rel="stylesheet" href="../demos.css">
	<script src="../../external/requirejs/require.js"></script>
	<script src="../bootstrap.js">
		var value,
			datepicker = $( "#datepicker" ).datepicker();

		$( "#format" ).on( "change", function() {
			value = $( this ).val();

			if ( value === "iso" ) {
				datepicker.datepicker( "option", "dateFormat", { raw: "yyyy-MM-dd" } );
			} else {
				datepicker.datepicker( "option", "dateFormat", { date: value } );
			}
		});
	</script>
</head>
<body>

<p>Date: <input type="text" id="datepicker" size="30"/></p>

<p>Format options:<br />
	<select id="format">
		<option value="short">Short - M/d/yy in "en" locale</option>
		<option value="long">Long - MMMM d, y in "en" locale</option>
		<option value="iso">ISO 8601 - yyyy-MM-dd</option>
	</select>
</p>

<div class="demo-description">
<p>Display date feedback in a variety of ways.  Choose a date format from the dropdown, then click on the input and select a date to see it in that format.</p>
</div>
</body>
</html>