"jquery UI datepicker custom style css"
Bootstrap 4.1.1 Snippet by arifurrahmansw

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://use.fontawesome.com/fb48fadd01.js"></script>
<div class="container">
<div class="form-group row">
<div class="col-md-12">
<label>Date<span style="color:red;">*</span></label>
<input type="text" class="form-control datepicker" id="entry_date" name="entry_date" value="" readonly required />
</div>
</div>
<div class="form-group row">
<div class="col-md-12">
<a class="btn btn-info btn-block text-white" >Show</a>
</div>
</div>
<p class="text-center"><a target="_blank" href="http://agami24.com/">Thanks</a></p>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
27
28
29
30
31
32
33
34
35
36
37
body {
font-family: "Roboto", sans-serif;
font-size: 1rem;
font-weight: normal;
line-height: 1.5;
}
.container {
max-width: 75rem;
width: 100%;
margin: 0 auto;
}
.wrapper {
max-width: 40rem;
padding: 2rem;
margin: 4rem auto;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
border-radius: 4px;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
padding-left: 5px;
vertical-align: middle;
}
.table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
max-width: 100%;
margin-bottom: 0px;
}
td, th {
border: 1px solid #000;
padding: 5px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
$(function() {
$(".datepicker").datepicker({
dateFormat: 'dd-mm-yy',
changeMonth: true,
changeYear: true,
constrainInput: false
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: