New window close with alert box

wxdqz

New Member
I have a form which opens in a new window. The form can be submitted once and if a person tries to submit the form again an alert box pops up with the message - "This form has already been submitted. Thanks!"
with a OK button. When one clicks the OK button, the pop up alert box closes.

What I want is that the new window/page containing the form should also close when the OK button is clicked. Can someone please modify the below mentioned lines so that the page also closes.


else
{
alert("This form has already been submitted. Thanks!");
return false;
}
return true;
}
// End -->
 
Back
Top