Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

link_to method=>destroy not working in rails 3

Project: Build a simple Ruby on Rails application. Section: Introducing Views. The problem is that the destroy method does not work. Clicking on the destroy or delete link results in the show method. On searching the internet for solutions, the following is recommended, make sure //= require jquery, //= require jquery_ujs and //= require_tree are in application.js and also <%= javascript_include_tag :defaults %> and <%= csrf_meta_tag %> are in the head section of application.html.erb These entries have not solved the problem. Several posts indicate that the issue is around using the delete method as a GET. Can a working solution be documented please? Other suggestions involve using button_to instead of link_to but that solution does not result in the confirmation message being displayed. Can anyone please suggest works rounds for both the link_to and the button_to. Thanks

Ian Schwartz
Ian Schwartz
191 Points

I have this same issue