method
link_to_function
link_to_function(name, function, html_options = {})
public
Returns a link that’ll trigger a JavaScript function using the onclick handler and return false after the fact.
Examples:
link_to_function "Greeting", "alert('Hello world!')" link_to_function(image_tag("delete"), "if confirm('Really?'){ do_delete(); }")
Register or
log in
to add new notes.
freegenie -
July 2, 2008
dovadi -
July 23, 2008 - (>= v2.1.0)
7 thanks
error in block code example
I guess there’s an error in this part of the code:
link_to_function("Show me more", nil, :id => "more_link") do |page| page[:details].visual_effect :toggle_blind page[:more_link].replace_html "Show me less" end
It doesn’t work. It should be:
link_to_function("Show me more", nil, :id => "more_link") do |page| page[:details].toggle "Blind" page[:more_link].replace_html "Show me less" end
Using Rails 2.1.0
0 thanks
Another solution for visual_effect in code block example in link_to_remote
Update: Code block example in link_to_function not link_to_remote (can’t edit subject annymore :( )
This doesn’t work:
page[:details].visual_effect :toggle_blind
My solution:


