Browser APIs & DOM Manipulation
Modern web browsers provide a rich set of APIs (Application Programming Interfaces) that allow JavaScript to interact with the browser environment and manipulate web page content. This guide covers the DOM (Document Object Model) and various browser APIs that are essential for frontend development.
The Document Object Model (DOM)
The DOM is a programming interface for HTML documents. It represents the page as nodes and objects that JavaScript can interact with.
DOM Structure
The DOM represents an HTML document as a tree of nodes:
1 | document |
Selecting DOM Elements
1 | // By ID (returns a single element) |
Manipulating DOM Elements
Creating Elements
1 | // Create a new element |
Modifying the DOM
1 | // Append elements |
Cloning Elements
1 | // Clone an element (false = without children, true = with children) |
DOM Properties
1 | // Text content |
DOM Events
DOM events allow JavaScript to register different event handlers on elements in an HTML document.
Event Handling
1 | // Adding event listeners |
Event Object Properties
1 | element.addEventListener('click', function(event) { |
Event Propagation
Events in the DOM propagate in three phases:
- Capture Phase: From the root down to the target
- Target Phase: The event reaches the target
- Bubbling Phase: From the target back up to the root
1 | // Capturing phase (third parameter true) |
Common DOM Events
1 | // Mouse events |
Custom Events
1 | // Creating a custom event |
Browser Storage APIs
Browsers provide several ways to store data on the client side.
Local Storage
Data persists until explicitly cleared. Available across browser sessions.
1 | // Store data |
Session Storage
Similar to localStorage, but data is cleared when the session ends (window/tab closed).
1 | // Same API as localStorage |
Cookies
Traditional way to store small amounts of data. Sent with HTTP requests.
1 | // Set a cookie |
IndexedDB
A more powerful, asynchronous client-side storage API for larger amounts of structured data.
1 | // Open a database |
Network Requests
XMLHttpRequest (Legacy)
The older way to make HTTP requests, still supported by all browsers.
1 | const xhr = new XMLHttpRequest(); |
Fetch API (Modern)
The modern way to make HTTP requests, based on Promises.
1 | // Basic GET request |
Geolocation API
Access the user’s geographical location.
1 | // Check if geolocation is supported |
History API
Manipulate the browser history.
1 | // Navigate back |
Web Storage API
Web Storage (localStorage and sessionStorage) is covered in the Browser Storage section above.
Canvas API
Create and manipulate graphics and animations.
1 | // Get canvas element |
Web Audio API
Process and synthesize audio.
1 | // Create audio context |
WebRTC
Enables real-time communication in the browser.
1 | // Basic WebRTC peer connection setup |
Web Workers
Run JavaScript in background threads.
1 | // Create a worker |
Service Workers
A type of web worker that acts as a proxy server between web applications, the browser, and the network.
1 | // Register a service worker |
Intersection Observer
Detect when an element is visible in the viewport.
1 | // Create the observer |
Mutation Observer
Watch for changes in the DOM.
1 | // Create a mutation observer |
Web Animations API
Create and control animations in JavaScript.
1 | // Get element to animate |
Drag and Drop API
Enable drag and drop functionality.
1 | // Make an element draggable |
File API
Working with files from the user’s filesystem.
1 | // File input element |
Broadcast Channel API
Communicate between browsing contexts (tabs, windows, iframes).
1 | // Create a channel |
Learning Resources
- MDN Web Docs - Web APIs
- MDN Web Docs - Document Object Model (DOM)
- JavaScript.info - Browser: Document, Events, Interfaces
- Google Developers - Web Fundamentals
- Can I Use - Browser compatibility tables
- DOM Enlightenment - Free online book