I''ve implemented jQuery UI tabs, and I get an error: When i submit a ajax form or link, it gets submitted multiple times. As seen in this Doom console output: DELETE http://localhost:3000/innmeldings/101 404 (Not Found) DELETE http://localhost:3000/innmeldings/101 404 (Not Found) DELETE http://localhost:3000/innmeldings/101 404 (Not Found) DELETE http://localhost:3000/innmeldings/101 404 (Not Found) The more times i switch betweens the tabs, the more times the ajax link submits. I have googled it, but not found anything, which makes me believe this is not a common error in the JQuery UI tabs. Any idea what I do wrong? I uses rails 3.05. I''ve tried different versions of jQuery og jQuery Ui: ---- class InnmeldingsController < ApplicationController respond_to :js, :html ... def destroy @innmelding = Innmelding.find(params[:id]) @innmelding.destroy @innmeldings = Innmelding.all respond_with( @innmeldings, :layout => !request.xhr? ) end ... def list @innmeldings = Innmelding.all respond_to do |format| format.html # index.html.erb format.xml { render :xml => @innmeldings } format.js end end ... ---- list.html.erb: ... <td><%= link_to ''Destroy'', innmelding, :remote => true, :id => "reload", :method => :delete %></td> ... ---- application.js: $(document).ready(function(){ /$( "#nav" ).tabs(); ... -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.