XML DOM name Property


DocumentType Object Reference DocumentType Object

Definition and Usage

The name property returns the name of the DTD (the name immediately following the DOCTYPE keyword).

Syntax

documentObject.doctype.name


Example

The following code fragment loads "note_internal_dtd.xml" into xmlDoc using loadXMLDoc() and displays the name of the DTD:

Example

xmlDoc=loadXMLDoc("note_internal_dtd.xml");
document.write(xmlDoc.doctype.name);

Output:

note

Try it yourself »

DocumentType Object Reference DocumentType Object

Color Picker

colorpicker