Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've watched this screencast to add a page title when in a view, is there a way I can do the same but add a class the body tag?

share|improve this question
jQuery? $('body').addClass('mysexyclass'); – MrYoshiji Dec 21 '12 at 19:25
I didn't really want to have scripts inside the views – user1919937 Dec 21 '12 at 19:30

1 Answer

up vote 2 down vote accepted

Not sure what you mean, you can do it the same way:

In a view:

<% content_for :body_class, "my_class" %>

In a layout file:

<body class="<%= yield (:body_class) %>">
share|improve this answer
Is there a way to stop <body class> on other pages? – user1919937 Dec 21 '12 at 19:32
Not sure if there's actually an elegant way to this in ERB. The not so elegant way is to just do a helper call inside the body tag and return the whole body class ("my_class") together with the "class" attribute. Note that the yield(:body_class) call will return an empty string when no value is set so you can just check for that. – Jiří Pospíšil Dec 21 '12 at 19:44
It's no problem. Just wondered, that's all. Thanks! – user1919937 Dec 21 '12 at 19:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.