Parameters

Support Key: [2|3|3.2|4] [X1|X1.1] [IE3A1|M|N2|O3.5]
What is it?
Attributes
Tag Example
Parent/Content Model
Tips & Tricks
Browser Peculiarities
= Index DOT Html by Brian Wilson =
Main Index | Element Tree | Element Index | HTML Support History



   Quick Statistics   
End Tag:
   Omitted
Standards Details:
In all HTML 4.x/XHTML DTDs
XHTML Modules:
Applet and Object
CSS 'display' Type:
NA
CSS Mapping:
NA
Default Rendering:
NA
Official Docs:
HTML 4.x, XHTML 1.1

What is it?
The PARAM element is used to pass values to an embedded OBJECT (usually an embedded program) or to an embedded Java APPLET. In both situations PARAM serves the same purpose and has almost the same implementation (mostly because the official OBJECT with PARAM usage was meant to absorb the APPLET with PARAM functionality.)

Common Attributes
%Core%
[2|3|3.2|4] [X1|X1.1] [IE4|M|N6|O7]
%Data%
[2|3|3.2|4] [X1|X1.1] [IE4|M|N|O]

Specific Attributes
Name
[2|3|3.2|4] [X1|X1.1] [IE3A1|M|N2|O3.5]
Standards Details: In all HTML 4.x/XHTML DTDs
Required? Yes
Description:
This attribute identifies a symbolic name for the current parameter. It is coupled to a VALUE attribute to complete the parameter assignment.
Values: CDATA
Type
[2|3|3.2|4] [X1|X1.1] [IE6|M|N??|O6]
Standards Details: In all HTML 4.x/XHTML DTDs
Required? No
Description:
This identifies the MIME type of the resource indicated by the VALUE attribute ONLY when the VALUETYPE attribute has a value of REF.
Values: CDATA. [Alphanumeric MIME type]
Value
[2|3|3.2|4] [X1|X1.1] [IE3A1|M|N2|O3.5]
Standards Details: In all HTML 4.x/XHTML DTDs
Required? No
Description:
This identifies a value for the current parameter. It is coupled to a NAME attribute to complete the parameter assignment.
Values: CDATA
Valuetype
[2|3|3.2|4] [X1|X1.1] [IE6|M|N??|O6]
Standards Details: In all HTML 4.x/XHTML DTDs
Required? No
Description:
This identifies the type of the value attribute.
Values:
DATA - [DEFAULT] The value will be passed directly to the OBJECT as a string, after embedded character entities are resolved.
REF - The value indicated by the VALUE attribute is a URL where run-time values are stored.
OBJECT - Indicates a reference internal to the document where values are stored. Value is any valid ID attribute label.
Example
[Applet usage]
<applet codebase="http://www.foo.com/java/"
code="javaexample.class" width="200" height="300">
   <param name="text1" value="Example Text 1" />
   <param name="imagecaption" value="Image Caption" />
   <param name="bounceimage" value="bounce1.gif" />
   <img src="non_java_image.gif" width="200" height="300"
   border="0" alt="You are missing the full Java Experience." />
</applet>

[Object usage]
<object codetype="application/java-vm" codebase="http://www.foo.com/applet.class"
classid="java:program.start" height="100" width="100">
<param name="options" value="xqz" />
   If you can read this you are too close.<br />
   AND your browser does not support Java.
</object>
Parent Model
<applet> | <object>
Content Model
This element does not accept any content
Tips & Tricks Browser Peculiarities
Boring Copyright Stuff...