Skip to content

simple Javascript Timepicker Widget

Notifications You must be signed in to change notification settings

kingspride/timepickerW

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!