HTML DOM DFN Object
DFN Object
The DFN object represents the HTML <dfn> element.
Accessing DFN Object
You can use getElementById() to access the <dfn> element:
var x = document.getElementById("myDFN");
Create DFN Object
You can use the document.createElement() method to create a <dfn> element:
var x = document.createElement("DFN");
Standard Properties and Events
DFN Object Supports StandardsPropertiesAndEvents.
Related Pages
HTML Reference Manual:HTML <dfn> Tag