Answers for "how to step the html input field time"

1

input type time in html

<form>
  <label for="appt">Select a time:</label>
  
  <input type="time" id="appt" name="appt">

 </form>
Posted by: Guest on July-13-2021
0

simple form time input

<%= f.input :nap, default: Time.parse('8:00') %>
Posted by: Guest on December-06-2020

Browse Popular Code Answers by Language