method

method_tag

method_tag(method)
private

No documentation available.

# File actionview/lib/action_view/helpers/url_helper.rb, line 786
        def method_tag(method)
          options = { type: "hidden", name: "_method", value: method.to_s }
          options[:autocomplete] = "off" unless ActionView::Base.remove_hidden_field_autocomplete
          tag("input", **options)
        end