Menu
  • HOME
  • TAGS

Is it possible to disable JS in RoR project?

ruby-on-rails,w3m

Rails relies on javascript for links to http DELETE actions. link_to "Delete Thing", thing_path(@thing), method: :delete Generates a link with a data-method attribute. The Rails UJS driver then catches the click and turns it into into an AJAX HTTP DELETE request. method: symbol of HTTP verb - This modifier will...