snipe-it/bower_components/bootstrap-datepicker/docs/_screenshots/option_daysofweekdisabled.html

19 lines
493 B
HTML
Raw Normal View History

2017-01-11 03:05:06 -08:00
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="script/common.css">
<script src="script/common.js"></script>
<script>
function setup(){
$('input').datepicker({
format: 'mm-dd-yyyy',
daysOfWeekDisabled: [0, 6]
});
};
</script>
</head>
<body data-capture="input, .datepicker">
<input type="text" value="03-05-2013">
</body>
</html>