Home arrow JavaScript arrow Page 4 - OnReset, OnResize and Other JavaScript Events
JAVASCRIPT

OnReset, OnResize and Other JavaScript Events


In our last tutorial we left off with the mouse events. We’ll be wrapping up the series on JavaScript events in this part. It’s been a long ride, but by the end of this article you should be able to create some nifty dynamic web pages. When Google buys your nerd-infested web site, don’t forget the guy who got you there.

Author Info:
By: James Payne
Rating: 4 stars4 stars4 stars4 stars4 stars / 3
December 17, 2007
TABLE OF CONTENTS:
  1. · OnReset, OnResize and Other JavaScript Events
  2. · OnResize
  3. · OnSelect
  4. · OnSubmit
  5. · OnUnLoad

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
OnReset, OnResize and Other JavaScript Events - OnSubmit
(Page 4 of 5 )

The OnSubmit event is triggered when a user clicks the Submit button on a form. In the sample below, I refer to a page called someformpage.htm. This is the page that the form will redirect to when the Submit button is pressed. If you don’t create the page in your directory prior to running this script, it will not load the page. But never fret, the rest of the code will work.


<html>


<body>


Enter your name fool!

<form name="thisform" action="someformpage.htm"

onSubmit="alert('I think the name ' + thisform.thisfield.value + ' is stupid' + '!')">

<input type="text" name="thisfield" size="10">

<input type="submit" value="Do it!">

</form>


</body>


</html>


The above code creates a form. The text field named thisfield has a caption that demands: Enter your name fool! When the foolish user enters their name and clicks the Do It! Button (really it’s just a submit button), it triggers a pop-up alert that insults the user: I think the name (user’s name) is stupid! and redirects to the someformpage.htm page.




Supporting HTML tags: <form>

Supporting Javascript Objects: form


blog comments powered by Disqus
JAVASCRIPT ARTICLES

- More Top jQuery Tutorials for Beginners
- More Top jQuery Plugins for Menus
- Top jQuery Tutorials for Beginners
- New UI Framework and SDK for JavaScript Rele...
- JavaScript OpenPGP Tool, Node.js 0.6.3 Avail...
- Yahoo Releases Cocktails Language and Develo...
- Customizing jQuery Slideshows: Dynamic Contr...
- Customizing jQuery Slideshows: the animate()...
- Customizing jQuery Slideshows: slideUp() and...
- Customizing jQuery Slideshows: hide() and sh...
- Web Workers: Performing Calculations in Para...
- More Top JavaScript Frameworks and Libraries
- More Dynamic jQuery Styling Techniques
- The Top JavaScript Libraries
- The Top JavaScript Frameworks

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 5 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials