August 2006
Beginner to intermediate
272 pages
3h 28m
English
When you’re working with server-side technologies, forms are the one aspect of HTML that is most useful since it enables users to “communicate” with the server—by entering data into a form and then submitting that form to the server.
From a JavaScript point of view, HTML forms are very interesting as well. The options HTML is offering are somehow limited, and JavaScript can come to the rescue here. User data must be validated, forms may accept only certain kinds of input, form submission can be possible only when certain requirements are met. All this—and more—is possible with JavaScript, as covered in this chapter.
Example .
document.forms[0]
Usually, you access an HTML element using its ...
Read now
Unlock full access