2008-12-30 04:16:51 +00:00
<!doctype html>
< html lang = "en" >
< head >
2009-01-19 22:42:58 +00:00
< title > jQuery UI Datepicker - Display month & year menus< / title >
2009-01-07 02:36:51 +00:00
< link type = "text/css" href = "../../themes/base/ui.all.css" rel = "stylesheet" / >
2009-02-20 11:40:25 +00:00
< script type = "text/javascript" src = "../../jquery-1.3.2.js" > < / script >
2008-12-30 04:16:51 +00:00
< script type = "text/javascript" src = "../../ui/ui.core.js" > < / script >
< script type = "text/javascript" src = "../../ui/ui.datepicker.js" > < / script >
2008-12-31 06:29:31 +00:00
< link type = "text/css" href = "../demos.css" rel = "stylesheet" / >
2008-12-30 04:16:51 +00:00
< script type = "text/javascript" >
$(function() {
2009-01-01 00:27:45 +00:00
$('#datepicker').datepicker({
2008-12-30 18:23:21 +00:00
changeMonth: true,
changeYear: true
});
2008-12-30 04:16:51 +00:00
});
< / script >
< / head >
< body >
2008-12-30 16:45:42 +00:00
< div class = "demo" >
2008-12-30 04:16:51 +00:00
2009-01-01 00:27:45 +00:00
< p > Date: < input type = "text" id = "datepicker" > < / p >
2008-12-30 04:16:51 +00:00
2008-12-30 16:45:42 +00:00
< / div > <!-- End demo -->
< div class = "demo-description" >
2009-01-28 10:49:44 +00:00
< p > Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean < code > changeMonth< / code > and < code > changeYear< / code > options.< / p >
2008-12-30 16:45:42 +00:00
< / div > <!-- End demo - description -->
2008-12-30 04:16:51 +00:00
< / body >
< / html >