Link to home
Start Free TrialLog in
Avatar of Richard Korts
Richard KortsFlag for United States of America

asked on

Time Picker

Does anyone know of a Jquery control (or whatever the term is) that works like a "Date Picker"? That is, clicking on a input field opens up choices of times. I don't need every minute in 24 hrs, I need daytime hours like every 15 min. For example: 6:00AM, 6:15AM, etc, 12:00PM up through 8:00PM. I will accept 24 hrs if that's what I get.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Leonidas Dosas
Leonidas Dosas
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
https://eonasdan.github.io/bootstrap-datetimepicker/

If you only want time, why not just use a drop down

<select>
    <option>00</option>
    <option>15</option>
     <option>30</option>
   <option>45</option>
</select>

Open in new window

Avatar of Richard Korts

ASKER

Looks PERFECT.

Thanks.