The DOM Application Programming Interface
Explore how the Document Object Model Application Programming Interface works in web browsers. Understand the abstract interfaces like HTMLDocument and HTMLElement, and how JavaScript uses these to manipulate web page content dynamically for responsive designs.
We'll cover the following...
We'll cover the following...
The DOM and the application programming interface (API)
Besides describing a standard object model for HTML, the DOM standard defines an Application Programming Interface (API) to manage this model.
The available functionality of this API is defined as:
A set of abstract interfaces, such as HTMLDocument (describes the behavior of an HTML document behind a web page), ...