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" >
2009-01-19 22:42:58 +00:00
< title > jQuery UI Datepicker - Format date< / title >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2014-06-10 11:55:45 +00:00
< script src = "../../external/jquery/jquery.js" > < / script >
2013-08-30 12:27:19 +00:00
< script src = "../../external/globalize/globalize.js" > < / script >
< script src = "../../external/date.js" > < / script >
< script src = "../../external/localization.js" > < / script >
2013-12-02 18:36:12 +00:00
< script src = "../../ui/core.js" > < / script >
< script src = "../../ui/widget.js" > < / script >
2013-08-30 12:27:19 +00:00
< script src = "../../ui/button.js" > < / script >
< script src = "../../ui/position.js" > < / script >
2013-12-02 18:36:12 +00:00
< script src = "../../ui/datepicker.js" > < / script >
2010-09-10 12:50:53 +00:00
< link rel = "stylesheet" href = "../demos.css" >
< script >
2009-01-02 03:56:06 +00:00
$(function() {
2010-09-10 12:50:53 +00:00
$( "#datepicker" ).datepicker();
$( "#format" ).change(function() {
$( "#datepicker" ).datepicker( "option", "dateFormat", $( this ).val() );
});
2009-01-02 03:56:06 +00:00
});
< / script >
< / head >
< body >
2009-01-08 22:28:45 +00:00
< p > Date: < input type = "text" id = "datepicker" size = "30" / > < / p >
< p > Format options:< br / >
2009-01-02 03:56:06 +00:00
< select id = "format" >
2013-08-30 12:27:19 +00:00
< option value = "d" > Default - M/d/yyyy< / option >
< option value = "D" > Long - dddd, MMMM dd, yyyy< / option >
< option value = "yyyy-MM-dd" > ISO 8601 - yyyy-MM-dd< / option >
2009-01-08 22:28:45 +00:00
< / select >
< / p >
2009-01-02 03:56:06 +00:00
2010-09-10 12:50:53 +00:00
< 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 >
2012-09-10 15:33:46 +00:00
< / div >
2009-01-02 03:56:06 +00:00
< / body >
< / html >