Using javascript, how can we auto insert the current DATE and TIME into a form input field.
I'm building a "Problems" form to keep track of user submitted complaints about a certain service. I'm collecting as much info as possible. I want to save the staff here from having to manually enter the date and time each time they open the form.
I have this snippet of code:
<input id="date" name="date" value="javascript:document.write(Date()+'.')"/>
but it's not working.
many thanks for any help.