vote up 1 vote down star

I have 3 controls with id control_1, control_2, control_3.

I want to hide these controls.

Currently I am using this:

$('#control_1').hide();
$('#control_2').hide();
$('#control_3').hide();

Is there a better way of doing this?

Can I do something like $('control_*').hide();?

Is there a way to find controls with start with a specific name?

flag

65% accept rate

4 Answers

vote up 5 vote down check

For completeness, you can use the starts with attribute filter:

$('[id^="control_"]').hide();

That said, for most purposes it would be better to go with one of the other suggestions.

link|flag
vote up 2 vote down

You could use:

$('#control_1,#control_2,#control3').hide();

or use attributeStartsWith

link|flag
vote up 3 vote down

Why not replacing IDs with a class like .controls? Then just use:

$(".controls").hide();
link|flag
vote up 3 vote down

Instead, you can set same class to your controls and hide them like that :

$('.controlClass').hide();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.