tags:

views:

54

answers:

1

I'd like to select ALL of the disabled textboxes and add a Class to them, how do I do this in jQuery

+6  A: 
$('input[type=textbox]:disabled').addClass('myClass');
Stefan Kendall
He said textbox, not checkbox. I updated your answer for you. Cheers!
Josh Stodola
thanks. works like charm.
hminaya