mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
0977ea1b48
Self-closing tags are reported by newer versions of the htmllint Grunt plugin. They also don't make sense in our HTML files since they are not XHTML-compliant and they run in HTML mode anyway. Ref gh-2157
34 lines
1.4 KiB
HTML
34 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery UI Datepicker - Localize calendar</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" data-modules="i18n/datepicker-ar i18n/datepicker-fr i18n/datepicker-he i18n/datepicker-zh-TW">
|
|
$( "#datepicker" ).datepicker( $.datepicker.regional[ "fr" ] );
|
|
$( "#locale" ).on( "change", function() {
|
|
$( "#datepicker" ).datepicker( "option",
|
|
$.datepicker.regional[ $( this ).val() ] );
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<p>Date: <input type="text" id="datepicker">
|
|
<select id="locale">
|
|
<option value="ar">Arabic (‫(العربية</option>
|
|
<option value="zh-TW">Chinese Traditional (繁體中文)</option>
|
|
<option value="">English</option>
|
|
<option value="fr" selected="selected">French (Français)</option>
|
|
<option value="he">Hebrew (‫(עברית</option>
|
|
</select></p>
|
|
|
|
<div class="demo-description">
|
|
<p>Localize the datepicker calendar language and format (English / Western formatting is the default). The datepicker includes built-in support for languages that read right-to-left, such as Arabic and Hebrew.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|