Articles by Tag #dom

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

What Is the DOM? How JavaScript Interacts with Web Pages (Beginner Guide)

Introduction When learning JavaScript, you’ll often hear this line: JavaScript interacts...

Learn More 0 2Jan 6

process-polyfill.ts in Refly codebase.

In this article, we review process-polyfill file in Refly codebase. We will look...

Learn More 0 0Dec 23 '25

JavaScript DOM Manipulation and Events

The Document Object Model (DOM) allows JavaScript to interact with and modify HTML content. This post...

Learn More 0 0Dec 30 '25

jQuery Complete Guide - From Basics to Advanced

jQuery is a fast, small, and feature-rich JavaScript library that simplifies HTML document traversal,...

Learn More 1 0Dec 30 '25

talkDOM: A Tiny Message-Passing Runtime for the DOM

talkDOM is a lightweight framework for declarative DOM messaging. HTML elements send Smalltalk-style messages to fetch content, update the DOM, compose pipelines, and control navigation—all with a tiny runtime and no build step.

Learn More 1 0Mar 7

Understanding the DOM in the Browser: A Complete Guide

Introduction When working with web technologies, especially HTML, CSS, and JavaScript, one...

Learn More 0 0Jan 7

Why Does React Use a Virtual DOM?

A practical look at what the Virtual DOM really is, why direct DOM manipulation isn’t inherently slow, and what React is actually optimizing for.

Learn More 1 1Jan 26

DOM Manipulation in JavaScript

🚀 DOM Manipulation in JavaScript If you’re learning JavaScript, DOM Manipulation is one of...

Learn More 0 0Jan 11

How to Handle Forms in JavaScript (Without Reloading the Page)

Handle Forms in JavaScript Without Reloading Hey friends! It's another mini-tutorial...

Learn More 1 0Jul 9 '25

Build a Simple Notes App with HTML, CSS & JavaScript

Hey friends! 👋 It's another tutorial Wednesday and this week, we're building a Notes App from...

Learn More 0 0Aug 6 '25

Is innerHTML Dangerous? Myth vs Reality

innerHTML has been around since the early days of the web. It’s used in millions of websites to...

Learn More 3 0Jul 1 '25

Create a Simple Tabbed Component with HTML, CSS & JavaScript

Hey friends! It's another Mini-Tutorial Wednesday and this week, we're learning how to build a...

Learn More 1 0Jul 30 '25

🧩 React.Fragment — Group Elements Without Adding Extra DOM Nodes

React.Fragment lets you wrap multiple elements without creating extra or container tags in the...

Learn More 3 1Aug 10 '25

Breathing Life into the Page: Mastering the DOM API

Go beyond frameworks and learn to manipulate any web page with pure JavaScript. We'll cover the modern, essential methods for finding, changing, creating, and responding to elements using the DOM API.

Learn More 3 0Jul 5 '25

🔍 MutationObserver: Sherlock Holmes of the Web

🤔 Suppose you have an interactive website where elements are constantly changing, text updates and...

Learn More 0 0May 6 '25

🧠 10-Day JavaScript Challenge: DOM Manipulation Day-8

📅 Day 8: DOM Manipulation Welcome to Day 8 of our JavaScript journey! Today, we're exploring the...

Learn More 0 0Jul 15 '25

React useRef: Access DOM Without Re-rendering!🔍📌

Ever wanted to access a DOM element or store a value without causing a re-render? That’s where useRef...

Learn More 0 0May 31 '25

What Is JavaScript DOM: A Detailed Guide

The JavaScript DOM is a live object model representing HTML as a tree, letting scripts read and modify web pages dynamically.

Learn More 0 0Jun 26 '25

Copy Text to Clipboard with Just JavaScript (Beginner Friendly)

Hey friends! It's another mini-tutorial Wednesday and today we’re learning something fun and useful:...

Learn More 0 0Jul 16 '25

The DOM Explained: Where Markup Meets JavaScript

If you're a web developer, chances are you've at least heard of the DOM - Document Object Model. It...

Learn More 0 0Sep 4 '25

How to Manipulate the DOM with Vanilla JavaScript (Beginner-friendly)

Hey friends! It's another mini-tutorial Wednesday, and today we’re going back to basics: DOM...

Learn More 1 0Jul 2 '25

Mastering DOM Manipulation in Angular with Renderer2: A Complete Guide - Part 1

Hey devs, We’ve all worked with JavaScript DOM manipulation at some point. But have you ever...

Learn More 0 2Jul 30 '25

How to Run a JavaScript Function on Page Load

Learn how to run JavaScript functions on page load using window.onload, DOMContentLoaded, IIFE, and best practices for performance and reliability.

Learn More 0 0Jul 1 '25

Add Class to HTML Element in JavaScript

Learn how to add and manage CSS classes on HTML elements using JavaScript methods like classList.add, className, and polyfills.

Learn More 0 0Jul 1 '25

JavaScript DOM Manipulation: A Beginner's Guide

Before we dive into the exciting world of JavaScript DOM manipulation, let's connect! I regularly...

Learn More 1 0Jul 8 '25

Mastering DOM and Events: 4 Hands-on JavaScript Labs for Interactive Web Apps

Learn to manipulate DOM elements, handle form input events, and explore mouse events with 4 interactive JavaScript labs. Perfect for building dynamic web interfaces.

Learn More 0 0Feb 17

NodeJS Fundamentals: DOM

The Document Object Model: A Production Deep Dive Introduction Imagine a large...

Learn More 0 2Jun 21 '25