Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
TristanJo
Experienced
Topic Author
Posts: 116
Joined: 10 Apr 2018, 02:57

Contact form

16 Nov 2020, 04:30

Hello karl~:grinning:

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

Thank you.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13997
Joined: 30 Sep 2006, 03:37

Re: Contact form

17 Nov 2020, 03:23

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">
 
User avatar
TristanJo
Experienced
Topic Author
Posts: 116
Joined: 10 Apr 2018, 02:57

Re: Contact form

19 Nov 2020, 05:14

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~