blob: 2b99921b30ae24debb821abbaed3dc8c53c0dcad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="script/common.css">
<script src="script/common.js"></script>
<script>
function setup(){
$('.date').datepicker({
format: 'mm-dd-yyyy'
});
}
</script>
</head>
<body data-capture=".input-group, .datepicker">
<div class="row">
<div class="col-sm-offset-4 col-sm-3">
<div class="input-group date">
<input type="text" class="form-control" value="12-02-2012">
<div class="input-group-addon">
<span class="glyphicon glyphicon-th"></span>
</div>
</div>
</div>
</div>
</body>
</html>
|