Page 1 of 1

Contact form

Posted: 16 Nov 2020, 04:30
by TristanJo
Hello karl~:grinning:

I'd like to get a calendar input from the contact form, is there a way?

Thank you.

Re: Contact form

Posted: 17 Nov 2020, 03:23
by mjau-mjau
TristanJo wrote:I'd like to get a calendar input from the contact form, is there a way?
Why not use the native browser "date" input field, which creates a calendar input in all modern browsers? You can see demo here: https://www.w3schools.com/tags/tryit.as ... _type_date
Code
<input type="date" name="mydatefield">

Re: Contact form

Posted: 19 Nov 2020, 05:14
by TristanJo
mjau-mjau wrote:
TristanJo wrote:I'd like to get a calendar input from the contact form, is there a way?
Why not use the native browser "date" input field, which creates a calendar input in all modern browsers? You can see demo here: https://www.w3schools.com/tags/tryit.as ... _type_date
Code
<input type="date" name="mydatefield">
thank you~