Skip to content

Instantly share code, notes, and snippets.

@colmtuite
Created May 2, 2015 18:26
Show Gist options
  • Save colmtuite/51e42af6985aeea7b913 to your computer and use it in GitHub Desktop.
Save colmtuite/51e42af6985aeea7b913 to your computer and use it in GitHub Desktop.
#view
<%= link_to "Delete", comment, method: :delete, data: { confirm: "Really?", remote: true } %>
#controller
def destroy
@comment = Comment.find(params[:id])
#@comment.destroy
respond_to do |format|
format.js
format.html
end
end
# comments/destroy.js.erb
alert('Fuck');
var element = document.getElementById("<%=j @comment.id %>");
element.parentNode.remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment