SUBMIT is a TYPE attribute value to the INPUT element for FORMs. It
specifies a button that, when activated, submits the information entered
to a processing script. If there are multiple SUBMIT buttons in a form,
only the one activated should be sent to the form processing script.
Description:
This is a method of giving access/focus to an active HTML element using
a keyboard character. This is a common GUI paradigm also known
as a "keyboard shortcut" or "keyboard accelerator"
A single character is used as the value of this attribute. In addition,
a platform-dependent key is usually used in combination with the
ACCESSKEY character to access the functionality of the active field.
Values:CDATA.
[A single, case-insensitive character from a browser's character set.]
Align
[2|3|3.2|4]
[X1|X1.1]
[IE|M|N6B1|O]
Standards Details:
Deprecated in HTML 4.x/XHTML 1.0. Dropped in XHTML 1.1.
Required? No
Description:
This attribute specifies the alignment of text following the INPUT
reference relative to the field on screen. LEFT and RIGHT specify
floating horizontal alignment of the form field in the browser window,
and subsequent text will wrap around the form field. The other options
specify vertical alignment of text relative to the form field on the
same line.
Values:Left | Right |
Top | Texttop |
Middle | Absmiddle |
Baseline | Bottom |
Absbottom
Description:
This is a stand-alone attribute which indicates the element is
initially non-functional. Disabled form elements should not be submitted
to the form processing script.
Description:
This attribute contributes the 'name' portion of a name/value pair
for this field. It is added to the stream of submitted data used by the
form processing script.
Description:
This is an SGML Document Access
(SDA) attribute. SDA attributes are designed to transform HTML (and
other SGML-based documents) to the ICADD
DTD - which is used in creating accessible documents for users with
visual disabilities (rendering in Braille, large print, speech
synthesis, etc.) The attribute value specifies content to be added
BEFORE the original element content (in this case the string
"Input: ") when the SDA document is rendered.
Description:
"Tabbing" is a method of giving access/focus to an active HTML
element using a standard keyboard sequence. All the active elements in a
document can be cycled through using this sequence (ex: Windows TAB key.)
The order of the active elements in this cycle is usually the order they
occur in the document, but the TABINDEX attribute allows a different order
to be established. The use of this attribute should create the following
tabbing order cycle if the browser supports the attribute:
Active elements using the TABINDEX attribute with positive integers are
navigated first. Low values are navigated first.
Active elements not specifying any TABINDEX attribute
Those elements carrying a DISABLED attribute or using negative TABINDEX
values do not participate in the tabbing cycle.
Description:
This attribute contributes the 'value' portion of a name/value pair
for this field. It is added to the stream of submitted data used by the
form processing script. It is also used to indicate an alternate button
label to be used in place of the default [usually "Submit".]
Netscape does not appear to have advertised that it supports the
HEIGHT and WIDTH attributes for this element. A reader alerted me
to them when he discovered them by accident.
[Test]Note: If HEIGHT and/or WIDTH dimensions are
specified that are smaller than the default size required to
display a button, the default size will be used.
[Test]
Internet Explorer 4.0 honors all whitespace and carriage returns in the value
attribute for this element. The button will preserve and display them 'as-is'.
Other browsers and earlier versions of Internet Explorer do not do this.
[Test]
Netscape 4+ allows some Character-level formatting to be applied to the
contents of this form field. These physical formatting elements (along with
virtual formatting elements that are rendered identically, such as
EM and I) apply to this form field: I, U, TT, S, STRIKE, SUB, SUP, BIG,
SMALL, FONT SIZE and FONT FACE.
[Test]
The DIR="RTL" attribute right aligns the content of INPUT elements
WITHIN the form field, not the element itself relative to the
viewport as it does for other elements.
[Test]
Opera 5/6: Using the DISABLED attribute still sends the name/value pair
for the element to the form processing script. It should not do this.