I am able to write in my MVC 3 view:
@Html.TextBoxFor(model => model.Something, new { style = "display: none;" })
But how can I do the same with a LabelFor?
To explain why: I am hiding the label initially but using JQuery to show this label at a later point. I guess I can use JQuery to initially hide it as well, but I would rather do it this way is possible.