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" >
2014-06-03 21:18:51 +00:00
< title > jQuery UI Calendar - Restrict date range< / 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-08-20 13:48:11 +00:00
< script src = "../../external/requirejs/require.js" > < / script >
< script src = "../bootstrap.js" >
2014-06-04 17:07:23 +00:00
var now = new Date(),
2015-08-26 09:49:04 +00:00
dateMin = new Date( now.getFullYear(), now.getMonth(), now.getDate() + 1 ),
dateMax = new Date( now.getFullYear(), now.getMonth(), now.getDate() + 8 );
2014-06-04 17:07:23 +00:00
2015-10-07 22:38:07 +00:00
dateMin = new Date( 2008, 2 - 1, 29 );
dateMax = new Date( 2008, 12 - 1, 7 );
2014-06-04 17:07:23 +00:00
$( "#calendar" ).calendar({
min: dateMin,
2015-10-07 22:38:07 +00:00
max: dateMax,
value: new Date( 2008, 1 - 1, 4 )
2014-06-04 17:07:23 +00:00
});
2009-01-02 03:56:06 +00:00
< / script >
< / head >
< body >
2014-06-03 21:18:51 +00:00
< div id = "calendar" > < / div >
2009-01-02 03:56:06 +00:00
2010-09-10 12:50:53 +00:00
< div class = "demo-description" >
2015-01-18 18:26:19 +00:00
< p > Restrict the range of selectable dates with the < code > min< / code > and < code > max< / code > options. Set the beginning and end dates as actual dates (< code > new Date(2009, 1 - 1, 26)< / code > ).< / p >
2012-09-10 15:33:46 +00:00
< / div >
2009-01-02 03:56:06 +00:00
< / body >
< / html >