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.
source
share