I am trying to use Jquery to iterate through an array of textboxes where i only want textboxes that are 'enabled'. can someone give me the best way to do this? Would i use the filter method ?
(ie:)
var arrayOfTextBoxes = $("[id$='" + textBoxId + "']");
var enabledTextBoxes = $(arrayOfTextBoxes).????
Thanks!