GithubHelp home page GithubHelp logo

int-u3l2-23-24-student-exercises's Introduction

Lesson 3.2: DOM Intro & Storing HTML

JavaScript & HTML DOM:

  • When a webpage loads, the browser creates a Document Object Model (DOM) of the page.
  • The DOM represents the blueprint of a webpage, structured like a tree of objects.

DOM & JavaScript:

Referencing the HTML example below:

<!DOCTYPE html>
<html>
  <head>
    <title>My title</title>
  </head>
  <body>
    <h1>A heading</h1>
    <a href="">Link text</a>
  </body>
</html>

With JavaScript, we can:

  • Access the DOM.
  • Declare variables to store HTML elements.
  • Modify the HTML elements, attributes, and styles.
  • Pair with event handlers to make websites interactive.

Storing HTML Elements:

Accessing Elements:

  • The document object represents the whole webpage.
  • To manipulate, we first access the document object, and then the specific HTML element.

Key Point: Variables can store numbers, strings, and also HTML tags. Storing HTML tags allows us to manipulate the HTML and CSS using JavaScript.

Using querySelector():

let paragraph = document.querySelector("p");

To access the DOM and store HTML:

  1. Declare a variable.
  2. Access the DOM with document.querySelector().
  3. Specify the selector in quotes:
  • Using the HTML tag name: "div"
  • Using the class: ".my-div"
  • Using the ID: "#myDiv"

Example:

let var1 = document.querySelector("div");
let var2 = document.querySelector(".my-div");
let var3 = document.querySelector("#myDiv");

Remember: querySelector() only gets the FIRST matching HTML element.

int-u3l2-23-24-student-exercises's People

Contributors

cn-curriculum avatar cn-mika avatar

Watchers

 avatar

int-u3l2-23-24-student-exercises's Issues

Intro to Web Dev 3.2 Bugs

Hello! Just wanted to let you know that index.html and storingElements.html are both missing values for the href attribute in the nav bar. Additionally, index.html is missing the link tag for the stylesheet.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.