Madhu Sainimadhusaini22.hashnode.dev·Aug 27, 2023DOM, Virtual DOM and Shadow DOM: A Comprehensive Guide👋 Introduction Before we dive into the difference between DOM, Virtual DOM, and Shadow DOM, let's first understand the meaning of DOM. 🌐 The DOM stands for "Document Object Model". In simple terms, it's a tree-like representation of the HTML elemen...Discuss·25 likes·139 readsJavaScript
Aditya Sharmaadityash1.hashnode.dev·Aug 7, 2023Exploring Shadow DOM: Understanding Its Significance in Modern Web DevelopmentIntroduction Shadow DOM is a web standard that allows for the encapsulation of JavaScript, CSS, and HTML within a specific element, creating a separate DOM tree known as the Shadow Tree. This encapsulation helps in creating reusable and modular compo...DiscussDOM
Cesar Romanblog.cesartheroman.com·Aug 2, 2023Day 4 Overview: Reactive Programming with ProxiesCreating a Proxy A proxy is a wrapper object that allows you to intercept and modify operations performed on the wrapped object, allowing us to add custom behavior or validations to the object’s properties and methods. So this immediately strikes me ...DiscussWorking through FEM's: VanillaJS Courseproxy
Manisha Basrajscodelover.hashnode.dev·Jul 24, 2023Understanding Shadow DOMUnleashing the Magic: Creating Custom Buttons with Shadow DOM What is Shadow DOM? Shadow DOM provides a way to attach a hidden separated DOM to an element. Shadow DOM allows hidden DOM trees to be attached to elements in the regular DOM tree — this s...Discuss·2 likesShadowDOM
Vaibhav Tyagivaibhavtyagi.hashnode.dev·Jan 18, 2023What is Virtual DOM in React?The virtual DOM is a fundamental React concept. If you've written React code in the past few years, then you've probably heard of it. However, you may not understand how it works and why React uses it. In this blog post, we will dive deep into the to...Discuss·112 readsReact
Utkarsh Dixitutkarshdixit.hashnode.dev·Dec 21, 2022All about Shadow DOMWhat is a Shadow DOM and how does it differ from regular DOM The Shadow DOM is a technology for encapsulating the internal structure of a web component and hiding it from the main DOM. It allows developers to create reusable components that are easie...Discuss·71 readsShadowDOM