- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Document Object
Document Structure:
- The Document object represents the entire HTML document in the browser.
- It serves as an entry point to access and manipulate the document's elements, properties, and methods.
Accessing Elements:
- The Document object provides methods like getElementById(), getElementsByClassName(), getElementsByTagName(), and querySelector() to retrieve elements from the document.
Example: Accessing Elements
const elementById = document.getElementById('elementId');
const elementsByClass = document.getElementsByClassName('className');
const elementsByTag = document.getElementsByTagName('tagName');
const elementByQuery = document.querySelector('cssSelector');
Modifying Content:
- Document methods such as createElement(), appendChild(), removeChild(), and innerHTML allow dynamic modification of the document's structure and content.
Example: Modifying Content
const newElement = document.createElement('div');
newElement.textContent = 'New content';
document.body.appendChild(newElement);
Document Properties:
- The Document object exposes properties like title, URL, body, head, and forms, providing information and access to different parts of the document.
Example: Document Properties
console.log(document.title);
console.log(document.URL);
console.log(document.body);
Events:
- The Document object enables event handling through methods like addEventListener() and inline event attributes.
- It allows attaching event listeners to respond to user interactions and document lifecycle events.
Example: Event Handling
document.addEventListener('DOMContentLoaded', function() {
console.log('Document is ready');
});
Key Points
- The Document object provides a powerful interface for accessing, manipulating, and interacting with the HTML document in JavaScript.
- It facilitates dynamic updates to the document's content, structure, and behavior, enhancing the user experience and interactivity of web pages.
- Understanding the Document object is essential for effective DOM manipulation and event handling in JavaScript applications.