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
Post a Comment