jQuery UI: Date Picker
Date Picker
by Nibin George
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/mint-choc/jquery-ui.css">
<div class="demo">
<p>Date: <input id="datepicker" type="text"></p>
CSS
/*
Add custom styling or use existing jQuery UI themes
REFERENCE: jQuery UI themes, http://blog.jqueryui.com/
*/
JavaScript
$( "#datepicker" ).datepicker({
beforeShowDay: DisableMonday
});
function DisableMonday(date) {
var day = date.getDay();
var tooltipDate='holiday !';
return [(day != 0 && day != 1 && day != 2 && day != 3 && day != 4 && day != 5 && day != 6),'',tooltipDate];
}