jeongeunjeongeun.hashnode.dev·13 hours ago[WEB] 🌎 주소창에 "www.naver.com"를 입력하면 어떤 일이 생길까?🌎 브라우저 구조 사용자 인터페이스 웹페이지 상단바에 위치한 뒤로가기, 앞으로가기, 새로고침 등등,말 그대로 사용자와 상호 작용하는 인터페이스를 뜻한다 브라우저 엔진 예를 들어, 사용자가 뒤로가기를 누르면 렌더링 엔진에게‘사용자가 뒤로가기를 눌렀으니 이전의 사이트를 가져와서 그려줘!’라고 알려주는 역할을 함 📌 렌더링 엔진 웹사이트를 그리는 엔진 통신 웹 브라우저의 네트워크를 담당 UI 백엔드 사용자 입력, 마우스...Today I Learned브라우저 렌더링
khushnumakushnuma.hashnode.dev·Dec 19, 2024Understanding DOM Manipulation for Full Stack Developer ProjectsCreating dynamic, user-friendly, and interactive web applications is at the core of what full stack developers do. At the heart of these capabilities lies DOM manipulation, a powerful technique that allows developers to manage the structure, content,...full stack developer projects,
Harshit Sisodiafull-stack-development-in-30-days.hashnode.dev·Dec 15, 2024Day 5: Introduction to the DOM - Manipulating the Web with JavaScript“Exploring the DOM - Bringing Interactivity to Your Web Pages” Introduction: Explain the Document Object Model (DOM) as the bridge between HTML/CSS and JavaScript, enabling developers to dynamically interact with and manipulate web pages. Example: "...Web Development
Harshit BansalforTechStack Talestechstack-tales.hashnode.dev·Dec 8, 2024Getting Started with ReactJsReact is the most popular javascript library to build large scale frontend applications. Prerequisites - HTML CSS Javascript Importing React using CDN CDNs are Content Delivery Networks, these are the sites where the react library has been hoste...2 likesReact JSReact
Amanuelamexabee.hashnode.dev·Dec 4, 2024Document Object Model (DOM)The Document Object Model (DOM) is a structured representation of an HTML document. It organizes the document into a tree of objects, making it possible to manipulate and interact with elements programmatically. DOM Manipulation document // ...52 readsJavaScript TutorialsDOM
Ashikur Rahmanashikonweb.hashnode.dev·Nov 27, 2024How Browsers Work: What Happens When You Type a URL?You might think you already know how a browser works: type a URL, hit enter, the browser makes an HTTP request, the server responds, and the website loads—simple, right? Not quite! Behind the scenes, your browser is doing far more. It’s performing co...79 readsBrowsers
Chris jr Nwaijechriskript.hashnode.dev·Nov 25, 2024Step-by-Step Guide to Making a Spin the Bottle Game with HTML, CSS, and JavaScriptAs a web developer, I enjoy creating projects that combine both fun and learning. One of the projects I recently worked on is a "Spin the Bottle" simulator, which is a simple interactive web game using HTML, CSS, and JavaScript. In this post, I’ll gu...Spin the Bottle Game
HexaHomejavascriptdom.hashnode.dev·Nov 22, 2024Demystifying the JavaScript DOM: A Simple Guide for BeginnersThe Document Object Model (DOM) is a fundamental part of web development. It’s what lets JavaScript interact with and manipulate a webpage. If you’ve ever clicked a button on a webpage and seen the content change without the page reloading, the DOM m...JavaScript
Sahana S Acharyareact-diaries.hashnode.dev·Nov 16, 2024How I Built My Own React RendererWhat Is React Rendering? At its core, React renders user interfaces by converting JavaScript objects (React elements) into DOM elements. React elements are essentially descriptions of the UI in the form of plain JavaScript objects. React then uses th...reactRender
gayatri kumargeekee.hashnode.dev·Nov 10, 2024DOM Methods Deep Dive: Powering Up Your Web Pages!Imagine you’re a treasure hunter, and your mission is to search through a map, identify key landmarks, and collect hidden treasures. In the world of web development, the Document Object Model (DOM) is like that treasure map, and DOM methods are the t...30 likesWeb DevelopmentDOM manipulation