submit a rails remote form with javascript
This is simply in Rails way :
$("#myform").trigger('submit.rails');
In Rails 5.1+, which replaces the old jquery-ujs
with a non-jquery rails-ujs
, the above answers no longer work, always submitting the form via an HTML HTTP request. This is how you trigger the new rails submit event handler:
var elem = document.getElementById('myform') // or $('#myform')[0] with jQuery
Rails.fire(elem, 'submit');
(Can't tell you how long it took me to figure that one out...) For some reason, the regular events don't bubble up properly to the delegated event handler attached by rails using rails' new delegate function, when they are triggered by jQuery.
How about using rails_ujs
and simply do the following:
Rails.fire(form, 'submit');
(where form
is a DOM Element)
This feels like a proper Rails way to do it.
You can check out the source here – https://github.com/rails/rails/blob/master/actionview/app/assets/javascripts/rails-ujs/utils/event.coffee#L34