Help with selector
Help with selector
I have an html file that has many forms with many fieldsets inside and they are gonna be submitted via ajax... I havent gotten that part figured out yet because I want to have the user submit these forms in order so I want to disable the input elements of the rest of the forms while the first one still hast been submited... s, say I have form 1 with id=form1 and many fieldsets and inputs, form2 with id=form2 with many fieldsets and inputs and form 3 with id=form3 with many fieldsets and inputs.... how do i disable every input element of only forms 2 and 3??... thanks
basically I want to modifiy this selector to not include input elements from form 1... thanks
$(":input").attr('disabled', true);