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?