Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

timepickerW

About

timepickerW is a simple, pureJS based time-only picker for Browsers which don't bring any date / time functionality with them.

demo Site included; or accessible here: click

Usage

Just include the js script and CSS in your HTML Source Code and init all the input fields with type='time':

<link rel="stylesheet" href="timepickerW.css">
<script src="timepickerW.js"></script>
<script>
    var active = false;
    document.addEventListener("DOMContentLoaded", function(event) {
        inittimepicker();
    });
</script>

Much Fun!