Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I have answered some questions and have gotten answers for my questions. Anywhere you can do this on one page helps tremendously..."

Geography

Where in the world do Tek-Tips members come from?
Baph (Programmer)
12 Sep 00 5:54
I'm using a javascript mail form, which works fine. But I would like to modify the submit button so that on mousedown it also goes to a confirmation page. How do I right this into the javascript?
KernelTom (Programmer)
12 Sep 00 17:19
Something like this should work...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<!-- START OF SCRIPT -->
<!-- For more scripts visit http://www.netpedia.com -->
<HTML><HEAD><TITLE>Verify Form</TITLE></HEAD>

<SCRIPT LANGUAGE="javascript">
function doVerify()
{
   location.href = "thanks.html"
}
</script>



<!-- END OF SCRIPT -->

<BODY BGCOLOR="FFFFFF">
<font face=arial><font size=2>
This JavaScript will email the input to you and send the user,
after clicking send it to a "Thank You" page or something
of that sort.<p>

<FORM method="POST" action="mailto:somebody@some.net" onSubmit="alert('Mail is being sent')">
<B>Please enter your name: </B><input NAME="username" size="30">
<input type=submit onBlur="doVerify()" value="Send it!">
<input type=reset value="Start over">


</form>
 



</body>
</html>

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close