Hello - I have a form that I've created for a site that a user enter's their email address and hits submit. Upon hitting submit it opens a new window that processes the email address and performs some functions. When you close that window and return to beginning window the information supplied is still there... I thought forms automatically clear when you hit submit. I'm not sure if this is the glitch but my submit is an image. Here is the form code
<form onSubmit="return checkNewsletter(this);" method="POST" action="subscribe.php" target="_blank">
E-Mail:
<input type="text" size="20" maxlength="150" name="emailAddr">
<img src="../images/blank.gif" width="55" height="1">
<input type="image" src="../images/SubscribeButton.jpg">
</form>
Any advice is most appreciated.
Thanks,
mlm823
<form onSubmit="return checkNewsletter(this);" method="POST" action="subscribe.php" target="_blank">
E-Mail:
<input type="text" size="20" maxlength="150" name="emailAddr">
<img src="../images/blank.gif" width="55" height="1">
<input type="image" src="../images/SubscribeButton.jpg">
</form>
Any advice is most appreciated.
Thanks,
mlm823