I have the following link_to delete url in my app

<%=link_to "Delete",blog_path(@blog.id), :method => :delete, :class => "delete", :confirm => "Are you sure ?"%>  

It does not seem to be working.When I click this url, it just takes me to the show path.Can someone please tell me how to fix this. Thanks.

link|improve this question

61% accept rate
What is your route (routes.rb) for blogs? – aceofspades Dec 12 '10 at 18:54
try type 'rake routes' and show the output ... – wizztjh Dec 20 '10 at 5:26
feedback

4 Answers

Felix, are you using JQuery? If so, I think the problem could be that you are using JQuery without the updated rails.js file.

Download rails.js here: https://github.com/rails/jquery-ujs/raw/master/src/rails.js Drop it in your javascripts directory, overwriting the rails.js that comes default with rails.

Add a javascript include line to include it.

  <%= javascript_include_tag "rails" %>

Put this after your Jquery include tag. You probably also want to disinclude the javascript defaults if you don't plan on using prototype.

link|improve this answer
Thanks for the answer Sean. It was a javascript error. – Felix Dec 20 '10 at 8:13
feedback

Ensure that you have java script turned on. Otherwise :method => :delete acts just as show in Rails.

link|improve this answer
thanks for the answer.yes javascript is turned on already. – Felix Dec 12 '10 at 18:51
1  
then you should verify that you have rails.js loaded, and no javascript errors on the page. – iain Dec 12 '10 at 19:39
2  
@Felix: if you don't see "Are you sure?" when you click on this link, then something with js is wrong. – klew Dec 12 '10 at 19:53
feedback

If you're using restful routing for blogs, then the following should work:

<%= link_to "Delete", @blog, :method => :delete, :confirm => "Are you sure ?"%>
link|improve this answer
feedback

You can try with 'data-method' instead of :method.

<%=link_to "Delete",blog_path(@blog.id), 'data-method' => :delete, :class => "delete", :confirm => "Are you sure ?"%> 

You can check on jquery_ujs.js the following piece of code:

// Handles "data-method" on links such as:
// <a href="/users/5" data-method="delete" rel="nofollow" data-confirm="Are you sure?">Delete</a>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.