I have a form which looks like this
<%= form_tag(suggestions_path, :remote => true, :id=>"suggestpopform") do %>
<p>
Subject:<br />
<%= text_field_tag "subject" %>
</p>
<p>
Feedback or suggestion on anything:<br />
<%= text_area_tag "description", "", :size=>"50x20" %>
</p>
<p>
<%= submit_tag 'Submit' %>
</p>
<% end %>
this results in calling a create.js.erb
however, since the create action sends an email, there is a delay. So I want to have make the form disappear as soon as the ajax is getting start using ajax:before (or loading) with create.js.erb like this
$("#suggestpopform").bind("ajax:before",function() {
$("#suggestpop").html("Thanks a lot!");
});
but no matter what I try, nothing happens.
If however I have in create.js.erb only $("#suggestpop").html("Thanks a lot!"); it works fine.
How do I work with ajax:before or ajax:loading?
bindshould work. Is the form in a partial? – mccannf Nov 22 '12 at 16:31