Problems redirecting from form_remote_tag

Hey,

A noob question no doubt but when I use form_remote_tag to make an
AJAX call to the server I can’t make it redirect to re-render the
entire page.

So for example the below code from /controller/index.html.erb invokes
the call…

<% form_remote_tag :url => {:action => :foo} do %>

…form stuff…

<%= submit_tag "Submit" %>

<% end %>

And then a redirect from add_to_cart won’t work…

def foo
redirect_to :action => :index
end

Any thoughts?

Cheers!