Close Form After Submit

J

Jonathan

I want to be able to close a window after the users has clicked teh submit
button of a form, how do I do this?

Tia
 
A

Andrew Murray

click the "X" in the title bar?
or do you mean the action of submitting also closes the form?

I don't know.

try this for your submit button <input type="submit" name="Submit"
onclick=window.close();" >. I don't know if it will work. Either 1) it will
close without submitting, or 2) hopefully submit the form data and then
close.
 
Top