vote up 3 vote down star

Hiding a DIV would be easy enough in Javascript, but is there some Rails-y way to do it? I can think of some ways to do it by calling Javascript from a partial (.erb), of course, but I'd prefer not to write any Javascript at all. Possible?

Edit: The page is loaded and I would like to hide the DIV after (well, on) an Ajax call, so I'm in one of those render :update blocks.

flag

62% accept rate
how/when do you want it hidden? On load, after an event, or after an ajax call? – Andrew Vit Feb 12 at 22:29
editing the question now – yar Feb 12 at 22:31
It is really bad to get used to these types of JavaScript injections. I hope rails dies. – Luca Matteis Feb 12 at 22:57
thanks Luca. Why is it bad? Please elaborate so I can know if you have a point or are just ranting. – yar Feb 13 at 3:14
@Daniel: robertnyman.com/2008/11/… – Luca Matteis Feb 13 at 5:22
show 1 more comment

4 Answers

vote up 4 vote down check

Or, right in your view:

<%= link_to_function "Toggle", "$('#some_div').toggle();" %>
link|flag
So that would not even pass to the server-side, right? – yar Feb 13 at 14:03
Yep, pure JS. Hiding a div is definitely JS's domain; passing back and forth to the server to hide a div is overkill. – Matt Darby Feb 14 at 15:53
Love it. Thanks. – yar Mar 6 at 15:23
Finally used this... thanks! – yar Mar 26 at 13:49
vote up 1 vote down

Don't really know rails, but can you just output something like style="display:none;" into the div tag?

link|flag
I don't know rails either :), but my feeling is that I cannot... I can only touch stuff that is within a DIV or other ID addressable piece of the HTML page. – yar Feb 12 at 22:34
bummer :( - guess I'd probably get jquery from the toolbox at that point then. – seanb Feb 12 at 22:41
Nah, it has prototype and scriptalicious (sp.) by default, but even with plain JS it's easy. But now with the responses here (above) I'm set to go. – yar Feb 13 at 3:07
vote up 3 vote down

To render an RJS update from your controller:

respond_to do |format|
  format.html
  format.js { render(:update) { |page| page.hide('element_id') } }
end

You can look up the API for other RJS responses.

link|flag
Awesome, great response. Thank you. – yar Feb 13 at 3:05
vote up 3 vote down
render :update do |page|
    page.hide 'div_id'
end

You can throw this in you respond_to block or an RJS template.

Another helpful tip, using the same syntax:

render :update do |page|
    page << 'arbitrary javascript code goes here.'
end
link|flag

Your Answer

Get an OpenID
or

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