top button
Flag Notify
Site Registration

XML: Can someone explain me the Document Object Model ?

+1 vote
287 views
XML: Can someone explain me the Document Object Model ?
posted Jun 10, 2014 by Sandeep Bedi

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The Document Object Model which describes the logical formation of documents and provides the way to access and manipulate a document. It supplies an Application Programming Interface (API) to XML documents. It is built around the object-oriented design; therefore, it is known as DOM. The DOM model considers an XML document as a composition of objects and every object consists of properties and behaviors that can be manipulated by the DOM methods. The DOM allows creating and building XML documents, navigating the structure of documents, and managing the elements and their data. You can use the DOM methods and objects with any language, such as C#, VB, JavaScript, and VBScript.

answer Jun 11, 2014 by Pushpak Chauhan
...