Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I know that but how do I set an input field for EACH table row?
What exactly do you mean by a "hidden input field"? Do you mean an [tt]<input type="hidden">[/tt] that nobody will ever see, or do you mean some other kind of [tt]<input>[/tt] that you're initially hiding from view, but can be revealed by user action via Javascript.I have an html table that I would like to add a hidden column to, each table data in this column will have a hidden input field.
If it's an <input type="hidden">, there's really no reason to create a separate <td> for it at all. Just put it into one of the other <td>s in the row (or anywhere else in the <form> element for that matter). Creating extra <td>s just for the hidden <input>s and then hiding them with CSS is just making unnecessary work for yourself.