I am using a jquery selector
$('input,select,textarea').not('table input').attr('disabled',true);
here I am disabling all input, select, and textarea control. but I dont need to disable any control that is in a table. I have done it using .not('table input') but I also need to mention select
along with input control in a table.
I have select conrol in table, whcih i dont want to disable. what would be the selector for this.