I have created a page with a number of frames. One of the frames has a form with a submit button.
On submit, I want to close the entire page (ALL the frames) and open the new page in a fresh window. How do I do that?
I have created a page with a number of frames. One of the frames has a form with a submit button.
On submit, I want to close the entire page (ALL the frames) and open the new page in a fresh window. How do I do that?
In the form element, add the attribute target="_top".
<form action="process.php" target="_top">
Have a look at all of the possible target values:
http://www.w3schools.com/TAGS/att_form_target.asp
Thank you. Will do.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.