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(); }")

1Note

error in block code example

freegenie ยท Jul 2, 20087 thanks

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