Lightweight timepicker selector plugin, useful to avoid ugly default browser timepicker.
npm i @andreazorzi/timepicker// TimepickerimportTimepickerfrom"@andreazorzi/timepicker";window.Timepicker=Timepicker;// Localesimporttimepicker_itfrom"@andreazorzi/timepicker/locale/it";window.timepicker_it=timepicker_it;@import"@andreazorzi/timepicker/timepicker.css";<divclass="timepicker"><inputtype="text" id="time" name="time"></div><script>lettime=newTimepicker("#time",options)</script>{
disabled: true, // set the field to readonly
selected:{
hour: -1, // sets hours and minutes default value,
minute: -1 // if the value is -1, the field value will be empty
}
lang: default_lang, // an array of translated texts, default locale: it
am_pm: false // set AM / PM mode
}
// Open the modalopen()// Close the modalclose()// Get the current hour valuegetHour()// Get the current minute valuegetMinute()// Get the current am /pm selector valuegetAmPm()// Get current formatted time valuegetFormattedTime()