Bootstrap time picker

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
 
    <link href="compiled-4.5.7.min.css" rel="stylesheet" />
    <style>
        .timepicker.picker__input.picker__input--active {
            border-bottom1px solid #e3f2fd
        }
    </style>
 
</head>
<body>
    <div class="row">
        <div class="col-md-4">
            <input placeholder="Selected time" type="text" id="input_starttime" class="form-control timepicker">
            <label for="input_starttime"></label>
        </div>
    </div>
    <script type='text/javascript' src='https://mdbootstrap.com/wp-content/themes/mdbootstrap4/js/compiled-4.5.7.min.js?ver=4.5.7'></script>
 
 
    <script>
        $('#input_starttime').pickatime({
            twelvehour: true
        });
    </script>
</body>
</html>

Comments

Popular posts from this blog

Automatically send Birthday email using C#.Net

Drag and Drop multiple File upload using jQuery AJAX in ASP.Net using C# and VB.Net

Difference between each and map in jquery