Skip to content
Advertisement

How can I use javascript to add a value to a form before submitting it?

I’m using flask to build a website, and I want to get the local date of the client when they purchase my product and add it to the form when it’s submitted using javascript.

JavaScript
JavaScript

I trid two methods. The first one takes the form and adds an attribute to it. I’m not sure if I should use form.submit() after that or not, but neither worked. The second method takes the html of the form and adds the input to it. That also didn’t work.

What am I doing wrong?

Edit: the methods I used are based on this this and this

Advertisement

Answer

Appending an input element is correct. But you need to set its value, not local date. That should be the name of the input, not an attribute.

JavaScript

You don’t need to call form.submit() in your function. That will be done automatically unless the function returns false.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement