I have 3 controls with id control_1, control_2, control_3.
control_1
control_2
control_3
I want to hide these controls.
Currently I am using this:>
You could use:
$('#control_1,#control_2,#control3').hide();
or use attributeStartsWith