Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialjohnson tan
43 Pointsneed help Challenge Task 3 of 3 In the myscript.js file, on line 6, get the element by the id of "container"
Challenge Task 3 of 3
In the myscript.js file, on line 6, get the element by the id of "container"
<!DOCTYPE html>
<html lang="en">
<head>
<title> JavaScript Foundations: Variables</title>
<style>
html {
background: #FAFAFA;
font-family: sans-serif;
}
</style>
</head>
<body>
<h1 id="title">JavaScript Foundations</h1>
<h2>Variables: Basics</h2>
<div id="container">
This is a div with the id of "container"
</div>
<script src="myscript.js"></script>
</body>
</html>
/* JavaScript Foundations: Variables */
var bgColor = "blue";
var textColor = "#FF9933";
var container = document.getElementById('title');
container.style.background = bgColor;
container.style.color = textColor;
2 Answers
Michael Jurgensen
8,341 PointsHi Johnson,
You need to change the id that is being passing into the getElementById method. Change the ID to 'container' instead of 'title'.
var container = document.getElementById('container');
johnson tan
43 PointsThanks