XML DOM documentURI Property


Document Object Reference Document Object

Definition and Usage

The documentURI property sets or returns the location of the document.

Syntax

documentObject.documentURI


Example

The following code fragment loads "books.xml" into xmlDoc using loadXMLDoc() and displays the location of the XML document:

Example

xmlDoc=loadXMLDoc("books.xml");
document.write("Document location: " + xmlDoc.documentURI);

Output:

Document location: books.xml

Try it yourself »

Document Object Reference Document Object

Color Picker

colorpicker