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

26 lines
666 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',
calendarWeeks: true
});
};
</script>
</head>
<body data-capture="input, .datepicker">
<div class="row-fluid">
<div class="span6">
<input type="text" value="01-16-2012">
</div>
<div class="span6">
<input type="text" value="12-16-2012">
</div>
</div>
</body>
</html>