GithubHelp home page GithubHelp logo

js-mini-challenge-dom's Introduction

JS Mini Challenge: DOM Manipulation

Today, we'll be building a prototype of a small application about Ian's favorite soccer team, Liverpool FC. If you don't like Liverpool, 1. sorry, and 2. feel free to change the data and personalize your app!

There's a section in this Readme file for your notes on each deliverable. As you go through the deliverables, write down some notes in this file on how you solved each problem. It'll help reinforce what you learned and give you a head start next time you see a similar problem.

A note on notation: when you see an element like h1#header in the Readme, that refers to the element's tag name and the CSS selector. For example, h1#header looks like this in the HTML:

<h1 id="header">Some text here</h1>

And div.players-container looks like this (note the CSS class selector syntax):

<div class="player-container">
  <!-- child elements here -->
</div>

Deliverable 1

Open the index.html file in your browser and check the console in Chrome Dev Tools. You'll notice the console.log from line 2 of the index.js file is returning null instead of showing the h1#header element.

Figure out what you need to change to give Javascript access to the h1#header element.

YOUR NOTES


Deliverable 2

Now that you have access to the h1#header element, use Javascript to change the element's font color to red (of course).

YOUR NOTES


Deliverable 3

Now that we've got a beautiful red header, we can show some players on the page. The player data is stored in a variable called PLAYERS in the data.js file - you can still access that variable in your index.js file (see if you can figure out why!).

First, uncomment the console.log under Deliverable 3 in the index.js file to see the data in the console. For each player in our application, we want to render their information on the DOM inside the div#player-container element.

Create a DOM element that looks like this for each player and append it to the div.player-container:

<div class="player" data-number="(Player Number)">
  <h3>
    {player name} (<em>{player nickname}</em>)
  </h3>
  <img src="{player image}" alt="{player name}">
</div>

YOUR NOTES


Deliverable 4

Uh-oh! A Manchester City player, Raheem Sterling, snuck into our list. Use Javascript to find the element with the [data-number='7'] attribute, and remove that element from the page.

Hint: You can use querySelector with CSS Attribute Selectors to find an element with a specific data-number.

YOUR NOTES


js-mini-challenge-dom's People

Contributors

ihollander avatar

Watchers

James Cloos avatar

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.