operation with all inputs, without type="checkbox"
Posted
by loviji
on Stack Overflow
See other posts from Stack Overflow
or by loviji
Published on 2010-05-23T21:45:56Z
Indexed on
2010/05/23
21:51 UTC
Read the original article
Hit count: 198
I want to do some operation with input elements in td. I used for this:
var inputElements = $('td > input', row);
inputElements.each(function () {
//some operation
});
How can I except checkboxes?
© Stack Overflow or respective owner