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 - Populate alternate field< / 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 >
< script src = "../bootstrap.js" >
2010-09-10 12:50:53 +00:00
$( "#datepicker" ).datepicker({
altField: "#alternate",
altFormat: "DD, d MM, yy"
});
2009-01-02 03:56:06 +00:00
< / script >
< / head >
< body >
2023-03-28 22:18:07 +00:00
< p > Date: < input type = "text" id = "datepicker" > < input type = "text" id = "alternate" size = "30" > < / p >
2009-01-02 03:56:06 +00:00
2010-09-10 12:50:53 +00:00
< div class = "demo-description" >
< p > Populate an alternate field with its own date format whenever a date is selected using the < code > altField< / code > and < code > altFormat< / code > options. This feature could be used to present a human-friendly date for user selection, while passing a more computer-friendly date through for further processing.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2009-01-02 03:56:06 +00:00
< / body >
< / html >