DOM and JavaScript

January 23, 2023

DOM and JavaScript

HTML-DOM-1.webp

The Document Object Model (DOM) is a programming interface for HTML and XML documents. It represents the structure of a document as a tree of nodes, with each node representing an element, attribute, or text content of the document. JavaScript can use the DOM to manipulate the content and structure of a web page, making it dynamic and interactive. The DOM is a standard of the World Wide Web Consortium (W3C) and is supported by all modern web browsers.

An example of how JavaScript can use the DOM to manipulate an HTML document:

In this example, the JavaScript function changeText() is called when the button is clicked. The function uses the DOM method getElementById() to find the element with the ID "myHeading" (which is the <h1> element), and then changes the innerHTML property of that element to "Hello DOM". As a result, when the button is clicked, the text of the heading changes from "Hello World" to "Hello DOM".

This is just a simple example, the DOM provides many more methods and properties to interact with the elements, such as:

  • document.createElement()
  • document.appendChild()
  • document.removeChild()
  • element.getAttribute()
  • element.setAttribute()
  • etc.

Helpful resources

Category
HTML
Self-improvement
CSS
JavaScript
TailwindCSS
TypeScript
NextJS
ReactJS
Get In Touch
ozanbatuhankurucu@gmail.com

© 2023