Consider the following form in .erb view:
<%= form_tag(harvester_next_url, :method => "post", :remote => true, "data-type" => :json, :id => "answerForm") do %>
<div id="dynamicFormContent"></div>
<% end %>
In certain circumstances, I want to issue a JS callback in the next method with
render :js => "window.location = '#{definitions_path}'"
However, this does not execute in browser. The response has "window.location..." in body and the content-type is set to text/javascript, the request's accept has text/javascript, too.
The Rails version is 3.2.8.
Some additional information: I don't want to switch form action to use JS format as JS callback code is only one of the possible responses from the controller. The other time, I need some JSON from it to deal with.
The question: is there a possibility to make it work without using client-side redirection (i.e. getting window.location from JSON response), etc.? AFAIK, this works OK for non-remote forms.
ADD It ends up with status = "parsererror" when XHR completes. Clearly, this is because jQuery attempts to parse response as JSON, even though it's text/javascript. The question is still open.