i have edit button at the last cell of the table. when i click it i am validating inputs if somethink goes wrong i am adding error class to necessary inputs. when the user will correct mistakes and push edit button again i want to remove error class of current row. but not from all row. how do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In the click handler:
Or if it was from the 'input' elements:
|
|||||
|
|
Your edit button click handler might look like this:
That uses ...although you might look at
...if the rows are dynamic (e.g., if you add or remove them). |
|||||||||||
|
.closest()and get the<tr>and then go back down the tree and find input elements from within, but without seeing the code I'm only guessing. – Brad Christie Dec 27 '10 at 15:13