answersLogoWhite

0

dom stands for document object model and is used to help parse xml documents.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is XML Parsing?

Extensive MarkUp languageXML parsing is when you convert an XML document into an XML DOM object - which can then be manipulated with a JavaScript.


How read xml file in java?

Java provides several XML Parsers like DOM, SAX or JDOM and API javax.xml.parsers by using those we can easily read xml files in Java. DOM is quickest and easiest way to read XMlL file in Java.


What is a DOM inspector?

A DOM Inspector is a toll include in the Mozilla Firefox browser prior to Version 3. The main purpose of the DOM Inspector is to inspect the Document Object Model (DOM) tree of HTML and XML-based documents. :)


What is the fullform of SAX parser in HTML?

SAX (Simple API for XML) is a serial access parser API for XML. SAX provides a mechanism for reading data from an XML document. It is a popular alternative to the Document Object Model (DOM).


What is a dom?

As a proper noun, it could refer to The Dom, a mountain in Switzerland. It can also be a nickname for Dominick. In computers, it can be an acronym for "The Document Object Model" (DOM), which is a cross-platform and language-independent convention to represent and interact with objects in HTML, XHTML, and XML documents.


How do you parse XML using JavaScript?

To manipulate an XML document in javascript, you need an XML parser. Today all browsers come with in-built parsers that can parse the XML document. The parser loads the document into your computer's memory. Once the document is loaded, its data can be manipulated using the DOM(Document Object Model). There is significant differences in implementation of Microsoft Browser based XML parser and the Mozilla browsers based XML parser.


What is the difference between sax and dom?

Both SAX and DOM are used to parse the XML document. Both has advantages and disadvantages and can be used in our programming depending on the situation SAX: 1. Parses node by node 2. Doesnt store the XML in memory 3. We cant insert or delete a node 4. Top to bottom traversing DOM 1. Stores the entire XML document into memory before processing 2. Occupies more memory 3. We can insert or delete nodes 4. Traverse in any direction. If we need to find a node and doesnt need to insert or delete we can go with SAX itself otherwise DOM provided we have more memory.


How do you create an RSS reader in PHP?

To create a RSS /XML reader, you can use the SimpleXML class. SimpleXML works like the DOM, with objects, takes all the XML document as a hierarchical tree. SimpleXML is easy to use when performing basic tasks like: reading XML files, extracting data from XML strings, and editing nodes and attributes.


What is java DTD?

A DTD is the original type of XML schema. XML Schemas are used to formally describes the contents of an XML document. An XML schema describes the shape of the XML document, defining the data, sub elements or attributes it can contain, along with the number of times given entities can occur. A document type definition (DTD) is a set of markup declarations that define a document type for an SGML-family markup language (SGML, XML, HTML). A Document Type Definition (DTD) defines the legal building blocks of an XML document. It defines the document structure with a list of legal elements and attributes.


What is JavaScript object?

The Document Object Model (DOM) is the World Wide Web Consortium (W3C - w3c.org) specification for the relationship between the content on a HTML/XHTML or XML page.


How do you spell dom?

You spelled it correctly. As a proper noun, it can be The Dom, a mountain in Switzerland. It can also be a nickname for Dominick. In computers, it can be an acronym for "The Document Object Model" (DOM), which is a cross-platform and language-independent convention to represent and interact with objects in HTML, XHTML, and XML documents.


Difference between HTML and xHTML 1.0?

HTML uses SGML-like syntax. XHTML 1.0 uses XML syntax. HTML uses HTML DOM, XHTML uses XML DOM. There are small differences between those. Other than that, they're identical. They use same tags, attributes, have same semantics. XHTML 1.0 specification is very short and refers to HTML 4 specification for all important matters.