How to apply CSS to label using for attribute in JQuery?
To target and apply CSS to label using for attribute
For example i have a label with for attribute ID #ial_cl Like
<label name="so and so" id="so and so" for="ial_cl">
Here is the Jquery to apply CSS
$('label[for="ial_cl"]').css('display','none');