Bootstrap Timepicker using Datetimepicker JS Example
In this example i give you how to add timepicker in your php application or html etc. this is full example if you just copy and past bellow code then you can find timepicker. you no need to install anything. I use datetimepicker library for timepicker that way you can also set datepicker too. bootstrap datetimepicker is very popular library. So if you also want to build date and timepicker both then also you can set you can see bellow example.
I set format "HH:mm:ss" but you can also add your custom format like "HH:mm" etc as you want but try this....
Example:
<html lang="en">
<head>
<title>Bootstrap Timepicker Example</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/css/bootstrap-datetimepicker.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/js/bootstrap-datetimepicker.min.js"></script>
</head>
<body>
<div class="container" style="margin-top: 20px">
<div style="position: relative">
<input class="form-control" type="text" id="time"/>
</div>
</div>
<script>
$('#time').datetimepicker({
format: 'HH:mm:ss'
});
</script>
</body>
</html>
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Use Bootstrap WYSIHTML5 Editor in Laravel?
- React Bootstrap Tooltip Example
- How to Use Bootstrap Popover in Angular?
- How to use Bootstrap Datepicker in Angular?
- Bootstrap Datepicker Disable Saturday and Sunday Example
- Bootstrap Star Rating using Bootstrap-star-rating JS Example
- Codeigniter Ajax CRUD Tutorial Example
- Bootstrap Show/Hide Toggle Password Input Field Example
- JQuery Timepicker with AM PM Format Example
- Bootstrap Colorpicker Example Code
- JQuery Delete Confirm Modal using Bootbox Example
- How to Use Collapse Example in Bootstrap?