method

form_tag_with_body

form_tag_with_body(html_options, content)
private

No documentation available.

# File actionview/lib/action_view/helpers/form_tag_helper.rb, line 864
        def form_tag_with_body(html_options, content)
          output = form_tag_html(html_options)
          output << content
          output.safe_concat("</form>")
        end