I'm obviously very very new to javascript. What I have is an input with the type number with an minimum of 1 and a maximum of 31. I'm asking the user to select the date they were born. However, I am unsure on how to retrieve the users value. If it was a select box with options I could get it but the requirements for the assignment are to use an input box with the type number. I would appreciate any guidance on how to do this, I've been looking up different sources for 3 hours and i'm sure it's very simple, I'm just not seeing it
this is my html:
<label for="birth_day">Please select your birthday:</label>
<input type="number" name="birthday" id="birthday"
min="1" max="31">
Thanks in advance for any help