I am trying to make a ruby tag field a required field client side only and I am trying to do so via:
<%= f.text_field :name, :placeholder => 'Event Title', :id => "form-field-first", :class => "form-field", :class => "req" %>
but it still submits no prob if the field is empty. Is it more complicated than this? do I have to go in my .rb file and make a special required class? Thanks for any help!