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:>
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.