What is the use of DOM in web applications?

Questions by GaneshVilas   answers by GaneshVilas

Showing Answers 1 - 6 of 6 Answers

DOM is Document Object Model and is a standard of W3C. It organizes all the web page elements into a tree and allows access to the content and dynamically modify it. Interactive web applications rely on DOM for the client side interactivity. Ex get values from elements create elements etc.

  Was this answer useful?  Yes

The Document Object Model (DOM) is a cross-platform and language-independent convention for representing and interacting with objects in HTML, XHTML and XML documents. Objects in the DOM tree may be addressed and manipulated by using methods on the objects. The public interface of a DOM is specified in its application programming interface

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions