HTML DOM Legend Object
Legend Object
The Legend object represents an HTML <legend> element.
Access a Legend Object
You can access a <legend> element by using getElementById():
var x = document.getElementById("myLegend");
Try it
Create a Legend Object
You can create a <legend> element by using the document.createElement() method:
var x = document.createElement("LEGEND");
Try it
Legend Object Properties
Property | Description |
---|---|
form | Returns a reference to the form that contains the legend |
Standard Properties and Events
The Legend object also supports the standard properties and events.
Related Pages
HTML reference: HTML <fieldset> tag
HTML reference: HTML <legend> tag