What is the syntax to use :confirm with link_to_remote? This doesn't work, I've tried a few permutations, with no success:
<%= link_to_remote( "X", :update => 'address_list', :url => { :controller => 'addresses', :action => 'destroy', :id => address }, :confirm => true ) %>
The above works fine if I remove the :confirm part.