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?