MrKevorkian
asked on
jquery select all labels in form
hi there,
(i am using jquery-1.3.2.min.js and mvc)
I have several labels and textboxes in my page.
50% of them have the word "Sdc" in the id - i.e "SdcStartLabel" "SdcEndLabel" "SdcTextbox" etc etc
After the page has loaded, if a certain value is false - i want to disable all the labels and textboxes that have "Sdc" in their id.
When i say disable - for the labels - i want to make the back ground grey - and put "N\A" and for the text inputs - to actually disable them.
Is this possible to do in one statement - rather than explicitly call every label and text box.
If so could someone show me how.
thanks
Once the
(i am using jquery-1.3.2.min.js and mvc)
I have several labels and textboxes in my page.
50% of them have the word "Sdc" in the id - i.e "SdcStartLabel" "SdcEndLabel" "SdcTextbox" etc etc
After the page has loaded, if a certain value is false - i want to disable all the labels and textboxes that have "Sdc" in their id.
When i say disable - for the labels - i want to make the back ground grey - and put "N\A" and for the text inputs - to actually disable them.
Is this possible to do in one statement - rather than explicitly call every label and text box.
If so could someone show me how.
thanks
Once the
Hi,
where action = block or none .
which would do show and hide
u can even pass these parameter thru ur function so that only one function can be used to both label and ur textbox or checkbox and anything else
where action = block or none .
which would do show and hide
u can even pass these parameter thru ur function so that only one function can be used to both label and ur textbox or checkbox and anything else
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
im going to go for this one, as it does the wildcarding which is what i hoping for
var trlist = $('tbl_registration').getE
var arrTr = $A(trlist).findAll(functio
arrTr.each(function(node){
node.style.display = action ;
});
u can change label and $('tbl_registration') to ur requirement