- 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 getElementById
Usage:
- The getElementById() method is invoked on the Document object to select a single element by its unique ID attribute.
Syntax:
var element = document.getElementById(elementId);
- elementId is a string representing the ID attribute of the HTML element to be retrieved.
Return Value:
- The method returns a reference to the first element in the document with the specified ID.
- If no element with the specified ID exists, it returns null.
Example:
<div id="exampleDiv">This is an example div.</div>
var divElement = document.getElementById('exampleDiv');
console.log(divElement); // Output: <div id="exampleDiv">This is an example div.</div>
Accessing Element Properties and Methods:
- Once obtained, the returned element reference can be used to access and manipulate the element's properties, such as innerHTML, textContent, style, etc., and methods.
Null Handling:
- It's important to handle cases where getElementById() returns null, especially if the specified element ID may not exist in the document.
Uniqueness Requirement:
- IDs must be unique within the document; otherwise, getElementById() will return only the first matching element.
Key Points
- getElementById() is a fundamental method for accessing and interacting with specific elements in the HTML document.
- It provides a straightforward way to retrieve elements by their unique ID attribute.
- Understanding how to use getElementById() is essential for DOM manipulation and JavaScript programming in web development.