Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to create a contact form using the remote_form_tag, but I cannot get it to work.

    <% remote_form_tag :url => {:action => :email_create} do %>
     <%= label_tag 'name', 'Name: ' %><%= text_field_tag :name %>
     <%= label_tag 'email', 'Email: ' %><%= text_field_tag :email %>
     <%= label_tag 'message', 'Message: ' %><%= text_area_tag :message %>
     <%= submit_tag 'Send' %>
    <% end %>

The problem is that code throws errors.

Anyone have any idea what the problem is?

Thank you

share|improve this question
When you say "throws errors", it's usually a good idea to paste in an example of one. This could be caused by anything. – tadman Oct 17 '10 at 20:18
Sorry, This is the error: undefined method `remote_form_tag' for #<ActionView::Base:0x5d15fec> – Brian Rosedale Oct 17 '10 at 20:19
WHat Rails version are you using? – jpartogi Oct 17 '10 at 21:17

2 Answers

up vote 2 down vote accepted

In Rails 2.3.x, there is no remote_form_tag method.

Use form_remote_tag instead (if you aren't wrapping the form around a model).

share|improve this answer
That worked great! thank you – Brian Rosedale Oct 17 '10 at 21:58

remote_form_tag has been removed in Rails 3. You need to use form_tag in combination with the :remote => true option.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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