Search code examples
ruby-on-railsajaxunobtrusive-javascript

rails ajax form cancel link get rid of form


If im using Ajax to render a form into a DOM element on my page, how would I handle cancel link behavior?

Assuming I have <%= f.submit %> at the bottom of the form, what would I use for a cancel link next to it?

The ideal would be to get rid of the form without submitting or redirecting.


Solution

  • Use whatever you prefer.

    = link_to 'Cancel', '#', class: 'cancel-link'
    

    or

    = button_to 'Cancel', '#', class: 'cancel-link'