Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 3 users online
 o Most users online: 67
 o Home
  o Javascripts
   o Forms Manipulation
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o OxyScripts
 o Wedding Vendor Directory
 o Open Source Design
 o devnet
 o designplace
 o Free Wedding Websites

Disallow Multiple Click on Submit (Rated 0)

Description:

If the value is submit, submit the form. Then, change the value to 'Wait' so it does not submit again.

Code starts here


<script language="javascript">
function domyfunc(obj) {
// If the value is submit,
// submit the form. Then,
// change the value to 'Wait'
// so it does not submit again.
if(obj.value == "Submit")
obj.form.submit();
obj.value = "Wait!";
}
</script>

<input
type="Button"
Name="Submit"
Value="Submit"
onClick="domyfunc(this)">


Submitted by Devscripts on 24-02-2003 12:13


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net