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 trialMohammad Hadi
1,203 Pointswhy it not passing to the next video
when i try to pass it to the next question it does not go and i do not know what to do
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="charset" value="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.5, maximum-scale=0.5, minimal-ui">
<title>Car Sounds</title>
<!--Style Sheet link-->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!--Car image -->
<img src="images/bikeLock.png" class="car" alt="car">
<!--Button-->
<a href="javascript:startCar();"><img src="images/key.png" alt="key"></a>
<!--Audio Files-->
<audio id="startCar" src="sounds/startCarA.mp3" preload="auto"></audio>
<!--Javascript-->
<script type="text/javascript">
function startCar() {
document.getElementById('startCar').play();
}
</script>
</body>
</html>
1 Answer
Dane Parchment
Treehouse Moderator 11,077 PointsRead the code comments carefully, and then re-read the challenge instructions.
You were first tasked with changing the car's img tag to point to the images/bike.png
.
Then you were tasked with changing the button's img tag to point to the images/bikeLock.png
.
Which img tag did you just change for the 2nd challenge instructions? Because it seems to me like you changed the wrong img tag.
If you still haven't figured it out, you need to change the car's img tag to point back to images/bike.png
and then change the button's img tag to point to images/bikeLock.png
. Read the code comments to figure out which image tags are for the car and button.
Ronald Greer
Front End Web Development Techdegree Graduate 56,430 PointsRonald Greer
Front End Web Development Techdegree Graduate 56,430 Pointsthats what i would've said thanks Dane