HTML DOM DFN object

DFN-object

DFN-object vertegenwoordigt het HTML <dfn>-element.

Toegang tot DFN-object

U kunt getElementById() gebruiken om het <dfn>-element te bereiken:

var x = document.getElementById("myDFN");

Try it yourself

Create DFN object

You can use the document.createElement() method to create a <dfn> element:

var x = document.createElement("DFN");

Try it yourself

Standard properties and events

DFN object supports standardsPropertiesandEvents.

Related pages

HTML reference manual:HTML <dfn> tag