range_field_tag(name, value = nil, options = {})
Creates a range form element.
Supports the same options as #number_field_tag.
# File actionview/lib/action_view/helpers/form_tag_helper.rb, line 937 def range_field_tag(name, value = nil, options = {}) number_field_tag(name, value, options.merge(type: :range)) end