haXe API Documentation
Back | Index
extern class js.html.AppletElement
extends Element
Available in js
Obsolete

Documentation for this class was provided by MDN.
var align : String
This attribute is used to position the applet on the page relative to content that might flow around it. The HTML 4.01 specification defines values of bottom, left, middle, right, and top, whereas Microsoft and Netscape also might support absbottom, absmiddle, baseline, center, and texttop.
var alt : String
This attribute causes a descriptive text alternate to be displayed on browsers that do not support Java. Page designers should also remember that content enclosed within the <applet> element may also be rendered as alternative text.
var archive : String
This attribute refers to an archived or compressed version of the applet and its associated class files, which might help reduce download time.
var code : String
This attribute specifies the URL of the applet's class file to be loaded and executed. Applet filenames are identified by a .class filename extension. The URL specified by code might be relative to the codebase attribute.
var codeBase : String
var height : String
This attribute specifies the height, in pixels, that the applet needs.
var hspace : String
This attribute specifies additional horizontal space, in pixels, to be reserved on either side of the applet.
var name : String
This attribute assigns a name to the applet so that it can be identified by other resources; particularly scripts.
var object : String
This attribute specifies the URL of a serialized representation of an applet.
var vspace : String
This attribute specifies additional vertical space, in pixels, to be reserved above and below the applet.
var width : String
This attribute specifies in pixels the width that the applet needs.
Back | Index