javascript - How to submit a form in an iframe and redirect to a page without frames -


my page contains iframe. inside frame, user can submit form. how can display submitted form in whole window, instead of frame?

i've interpreted question as:

my page contains iframe. inside frame, user can submit form. how can display submitted form in whole window, instead of frame?

answer: set target="_top" in form element:

<form target="_top" ...> 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -