Using a Hidden field in a New item form

What is the best approach to passing a hidden field value to a new list item?

I have a form with a choice field and need to pass the same specific value each time a new SharePoint list item is created. We don't want the user to have to select it - which is why it needs to be hidden.

thank you!

Hi @Pandra,

The values of all SharePoint fields are automatically saved in the list item when the form is submitted. Create a column for the value in question, add the corresponding field to the form, hide the field, and populate it with JavaScript.

Let me know if this works for you.

Thanks Ilia, that was indeed the right approach, worked great.