Skip to content Skip to sidebar Skip to footer

Redirect_to Out Of An Iframe

i have a rails app which has a form that renders in an iframe, and from the create action i would like to redirect_to out of the iframe and re-render the whole page rather than in

Solution 1:

You can do it! you have to replace the redirect_to with:

render :text => "<script>parent.location.href='/cms';</script>"

Solution 2:

I'm pretty sure that the redirect_to method won't be able to be aware of the iframe you're in and will instead have to be done through some javascript

You might be able to submit your form, via javascript, to the parent window by serializing the form fields.


Solution 3:

window.location.reload() after submitting your form via AJAX?


Post a Comment for "Redirect_to Out Of An Iframe"