HTML Form with onClick Code : JavaScript DHTML examples (example source code) » Form Control » Button

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   Form Control   » [  Button  ]   
 



HTML Form with onClick Code

Please note that some example is only working under IE or Firefox.

/*

Learn How to Program Using Any Web Browser
by Harold Davis 

Apress CopyRight 2004

ISBN: 1590591135
*/
<HTML>
<BODY>
<FORM> 
Enter Your Name: 
<INPUT TYPE=text NAME=userName  VALUE="Harry Potter"
Enter Your Age: 
<INPUT TYPE=text NAME=userAge  VALUE="12">
<INPUT TYPE=button VALUE="Check Age" 
onClick='var status = (userAge.value >= 21"an adult" "a minor"
alert(userName.value + " is " + status + ".");'>
</FORM>
</BODY>
</HTML>
Related examples in the same category
1.  Using the onSubmit Event to Cancel a Form Submission (Internet Explorer)
2.  Button set Textfield value
3.  Button click to display dialog
4.  Button Redirect
5.  Create a button
6.  Button to display the name of the form
7.  Button to display the names of all the elements in a form
8.  Animating Buttons with JavaScript
9.   Roll over one of our images.
10.  Button and Check Box Event Handling
11.  JavaScript Button action event
12.  Three Buttons Sharing One Function
13.   Running a Script from User Action
14.  Methods and Properties of the Button Object
15.  Putting Script Directly in the onclick Event Handler
16.  Toggle button with hand cursor and image
17.  Button Click action
18.  Button On Click Action
19.  Button timeout








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.