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 trialbrendon hanson
6,191 PointsI can't seem to find the solution
I have no clue! I tried everything I could think of
const laws = document.getElementsByTagName('li');
const indexText = document.getElementById('boldIndex');
const button = document.getElementById('embolden');
button.addEventListener('click', (e) => {
const index = parseInt(indexText.value, 10);
for (let i = 0; i < laws.length; i += 1) {
let law = laws[i];
// replace 'false' with a correct test condition on the line below
if (index === law) {
law.style.fontWeight = 'bold';
} else {
law.style.fontWeight = 'normal';
}
}
});
<!DOCTYPE html>
<html>
<head>
<title>Newton's Laws</title>
</head>
<body>
<h1>Newton's Laws of Motion</h1>
<ul>
<li>An object in motion tends to stay in motion, unless acted on by an outside force.</li>
<li>Acceleration is dependent on the forces acting upon an object and the mass of the object.</li>
<li>For every action, there is an equal and opposite reaction.</li>
</ul>
<input type="text" id="boldIndex">
<button id="embolden">Embolden</button>
<script src="app.js"></script>
</body>
</html>
1 Answer
Steven Parker
231,236 Points"law" is the element, so you won't want to compare that to the index number. But instead, you could compare the index to the loop variable "i".
brendon hanson
6,191 Pointsbrendon hanson
6,191 PointsI marked the remove button solved. I also can't find the best answer button on the game one
Steven Parker
231,236 PointsSteven Parker
231,236 PointsThat game question is in the "General Discussion" category and those don't have up/down voting or "best answer". You'd have to change the category (CSS, HTML, JavaScript, etc) to be able to select a "best answer".
Christophe Rudyj
Full Stack JavaScript Techdegree Student 13,011 PointsChristophe Rudyj
Full Stack JavaScript Techdegree Student 13,011 PointsEven me I can't find the solution
Steven Parker
231,236 PointsSteven Parker
231,236 PointsDoesn't the hint in the original answer help?