I\'m using Rails 3 with jQuery, and have a simple form with a single text input and a submit button. I have the form submitting with :remote => true, and wou
:remote => true
You can trigger a Rails AJAX submit like this:
$(this).trigger('submit.rails');