tags:

views:

19

answers:

1

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?

+4  A: 

Get all inputs in each cell, except checkboxes.

var inputElements = $('td > input:not(:checkbox)', row);
Anurag