Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q208 How can a user enter their email address in a form and then have the email sent to themselves?

You are here: irt.org | FAQ | JavaScript | Email | Q208 [ previous next ]

Only on Netscape:

<form action="" name="myform" method="post" enctype="text/plain"
onSubmit="document.myform.action = 'mailto:' + document.myform.myemail.value">
Email address: <input type="text" name="myemail">
</form>

Feedback on 'Q208 How can a user enter their email address in a form and then have the email sent to themselves?'

©2018 Martin Webb