How to submit formtastic via ajax?

So, I have a form generated by formtastic, and it works:

<%semantic_form_for(Model.new,:url=>{:action=>"fooobar"}) do |f|%>
<%end%>

I was wondering if there is a way to submit this form via Ajax like

remote_semantic_form_for

or

semantic_remote_form_for

because I have full functionality, but it will be much better if I do not have to reload the page on every post.

Thank.

+3
source share
1 answer

Got this job with semantic_remote_form_for

+4
source

All Articles