:class in link_to_remote

Can html_options be sent to link_to_remote?

Here is how I am doing it and it is not working i.e. class="" is not appearing in the <a> tag.

<%= link_to_remote(@user.tags.list_of(:category => 'location', :with_links => false), :update => 'location', :url => {:action => 'edit_location'}, :class => 'inline_edit' ) %>

Doen anyone see what I am doing wrong?

FIXED IT... but I don't like the fix at all. Too many squiglies...

The fix: <%= link_to_remote(@user.tags.list_of(:category => 'location', :with_links => false), {:update => 'location', :url => {:action => 'edit_location'}}, :class => 'inline_edit' ) %>