I have a table with several rows of data. Each row is it’s own entity. It’s not all associated to one form. Essentially each row is a form:
How can I use jQuery to say: for that row, if fName, lName and email are not blank, and email is valid. Enable the submit button. If not, disable the submit button?
Goal is to make sure each row is valid before allowing the user to submit. And then after submit, having control to remove the row?
Thoughts Thanks
Here’s how I’d do it (see jsfiddle.net/marke/mvBNS):