I have a rails helper text field from devise that uses html and atomatically validates the type="email" field. I want to add the attribute novalidate='novalidate' to it, but i do not know how.. Heres the code.. any suggestions?

<%= form_for(resource, :as => resource_name, :url => session_path(resource_name)
) do |f| %>
  <p><%= f.label :login %><br />
  <%= f.email_field :login %></p>
link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Just do:

<%= f.email_field :login, :novalidate => 'novalidate' %>

UPDATE -- If you want to add an attribute to the FORM tag, the syntax is slightly different:

<%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => {:novalidate => 'novalidate'}) do |f| %>
link|improve this answer
thanks but actually just realized it needs to go in the form_for tag, but when i add that it gets skipped.. heres what i did:<%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :novalidate => 'novalidate') do |f| %> – Jonah Katz Aug 15 '11 at 14:24
Don't worry... in this case use: <%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => {:novalidate => 'novalidate'}) do |f| %> – Blacksad Aug 15 '11 at 14:30
Perfect! (need 15 characters to post :) – Jonah Katz Aug 15 '11 at 14:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.