method

call

Importance_2
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActionView::Helpers::PrototypeHelper::JavaScriptGenerator::GeneratorMethods

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

These similar methods exist in v6.1.7.7:

call(function, *arguments, &block) public

Calls the JavaScript function, optionally with the given arguments.

If a block is given, the block will be passed to a new JavaScriptGenerator; the resulting JavaScript code will then be wrapped inside function() { ... } and passed as the called function’s final argument.

Examples:

# Generates: Element.replace(my_element, "My content to replace with.")
page.call 'Element.replace', 'my_element', "My content to replace with."

# Generates: alert('My message!')
page.call 'alert', 'My message!'

# Generates:
#     my_method(function() {
#       $("one").show();
#       $("two").hide();
#    });
page.call(:my_method) do |p|
   p[:one].show
   p[:two].hide
end
Show source
Register or log in to add new notes.