Other <form> Attributes
<form ... name='FormName' ... >
- associates the name
FormName with the entire form
- useful for referring to form in JavaScript
<form ... target='WindowName' ... >
- causes output from executing script to be placed in specified window
- useful when dealing with frames (see later)
<form ... onSubmit='Script' ... >
- specifies actions to be carried out just before sending data to script
|