Bootstrap Datetimepicker Mobile
Not working on mobile version
by Suryar Praveen
HTML
<script src="https://www.lycamobile.co.uk/wp-includes/js/jquery/jquery.js?ver=1.12.4"></script>
<link rel="stylesheet" href="//stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="//stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/js/bootstrap-datepicker.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/css/bootstrap-datepicker.css">
<div class="container">
<div class="row">
<div class="col">
<div class="reset_div_dob">
<input type="text" class="form-control" id="datepicker" placeholder="Enter your Date of Birth">
</div>
</div>
</div>
</div>
CSS
.row {
background: #f8f9fa;
margin-top: 20px;
}
.col {
border: solid 1px #6c757d;
padding: 10px;
}
JavaScript
$(function(){
$("#datepicker").datepicker({
format: 'dd/mm/yyyy',
endDate: '+0d',
autoclose: true
});
});