 rossini Registered User |
Quote
|
2025-06-13 11:09:40 |
|
Could the developers not incorporate a date that is always up to date for insertion here?
|
 niko Moderator |
Quote
|
2025-06-13 12:46:28 |
|
It's not in the HTML standard, but you can do it like this easily:
On your page, insert a JavaScript code element. Double-click it. Paste this code into there:
document.querySelectorAll('input[type="date"]')[0].valueAsDate = new Date();
That's it. Your date picker now is set to today.
|
 rossini Registered User |
Quote
|
2025-06-13 13:24:42 |
|
Thank you very much
|