The HTML Elements reference.

"param" - html element

  • This element provides parameters for the 'object' and 'applet' elements.
  • Starttag <param> is Required and endtag </param> is forbidden
  • You may use any number of PARAM elements.
  • Browsers that support the param - element : Internet Explorer Mozilla Firefox Opera Google Chrome Apple Safari
Element "param" example:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">
<!-- some browsers need the The Document Type Declaration -->
<html >
 <head>
  <title>Object element example</title>
  <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
 </head>
 <body>
  <p>
  <object classid="java:app.AppletTester.class"
          type="application/x-java-applet"
          archive="AppletTester.jar"
          height="100" width="300" >
   <!-- Konqueror browser needs the following param -->
   <param name="archive" value="AppletTester.jar" />
   <param name ="code" value = "app.AppletTester" />
  </object>
   </p>
 </body>
</html>


Attributes:
id , name (required), type , value , valuetype (Initial: data)

Attribute "id" value(s): unique name
  • This attribute assigns an identification name to an element. This name must be unique in a document
  • Id is often used when one wants to search for an item using javascript or vbscript.



© 2010 by Finnesand Data. All rights reserved.
This site aims to provide FREE programming training and technics.
Finnesand Data as site owner gives no warranty for the correctness in the pages or source codes.
The risk of using this web-site pages or any program codes from this website is entirely at the individual user.