Background: in Rails 5+, a POST route without an associated View now simply returns a 204 status code to the browser (instead of raising a ActionView::MissingTemplate exception as done before Rails 5). Which, as far as I understand it, tells all browsers to "stay on the same page".
For UX reasons, on a certain form when the user clicks "submit" it POSTs the form data, and ALSO triggers Jquery to do some updating to the page.
While it seems to work fine, both on development and production, are there any adverse implication to combining the form submit returning a 204 AND having jQuery update info on the page?