2012-09-10 15:33:46 +00:00
<!doctype html>
2009-01-02 03:56:06 +00:00
< html lang = "en" >
< head >
2010-09-10 12:50:53 +00:00
< meta charset = "utf-8" >
2015-09-30 13:11:22 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2009-01-19 22:42:58 +00:00
< title > jQuery UI Datepicker - Localize calendar< / title >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2010-09-10 12:50:53 +00:00
< link rel = "stylesheet" href = "../demos.css" >
2015-05-14 13:51:52 +00:00
< script src = "../../external/requirejs/require.js" > < / script >
2015-05-21 20:59:18 +00:00
< script src = "../bootstrap.js" data-modules = "i18n/datepicker-ar i18n/datepicker-fr i18n/datepicker-he i18n/datepicker-zh-TW" >
2010-09-10 12:50:53 +00:00
$( "#datepicker" ).datepicker( $.datepicker.regional[ "fr" ] );
2015-05-14 01:54:56 +00:00
$( "#locale" ).on( "change", function() {
2010-09-10 12:50:53 +00:00
$( "#datepicker" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
2009-01-02 03:56:06 +00:00
});
< / script >
< / head >
< body >
< p > Date: < input type = "text" id = "datepicker" / >
< select id = "locale" >
2013-03-23 10:11:14 +00:00
< option value = "ar" > Arabic (‫ (ا ل ع ر ب ي ة < / option >
2009-01-02 03:56:06 +00:00
< option value = "zh-TW" > Chinese Traditional (繁 體 中 文 )< / option >
2013-03-26 18:08:28 +00:00
< option value = "" > English< / option >
2009-01-02 15:36:40 +00:00
< option value = "fr" selected = "selected" > French (Franç ais)< / option >
2009-01-04 11:13:40 +00:00
< option value = "he" > Hebrew (‫ (ע ב ר י ת < / option >
2009-01-02 03:56:06 +00:00
< / select > < / p >
2010-09-10 12:50:53 +00:00
< 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 >
2012-09-10 15:33:46 +00:00
< / div >
2009-01-02 03:56:06 +00:00
< / body >
< / html >