asked on May 9, 2017
Hi all,
I created a Form with a date's field.
This field is auto populate by javascript.
$(document).ready(function () { var date = new Date(); var day = date.getDate(); var month = date.getMonth() + 1; var year = date.getFullYear(); if (month < 10) month = "0" + month; if (day < 10) day = "0" + day; var today = day+"/"+month+"/"+year ; document.getElementById('Field15').value = today ; });
As you can see, that's working
At the submitting, the process send an email and inside this email, I have the date's value.
But not in my case.
This is my parameters
What can I do?
Thank you for your help.
Regards