Hello!
I am using Rails 3 to load a partial (form) into another page with the code below. The problem is that I want to use :remote => true on the form and use ajax upon it (validation) etc.
$("#form_open").bind("ajax:complete", function(et, e){
$("#form_area").html(e.responseText);
$("#form_open").html("Add contact information");
});
This does not seem to be possible. Why cant I use ajax in this situation?