todo/public/vendor/bootstrap-datepicker/docs/_screenshots/option_daysofweekdisabled.html

23 lines
632 B
HTML
Raw Normal View History

2020-06-23 04:40:37 +00: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">
<div class="row">
<div class="col-sm-offset-4 col-sm-3">
<input type="text" class="form-control" value="03-05-2013">
</div>
</div>
</body>
</html>