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 trialDavid Jensen
6,339 PointsIs there any easy way to find the correct answer when I can't figure it out (e.g. answer key or something like that)?
so... I run into this problem all the time. For some challenges I can't figure out the right answer and simply have to skip the challenge. It would be nice if Treehouse would provide an answer key somewhere...
var sayButton = document.getElementById("say");
var greeting = function() {
alert("Hello World!");
};
onClick.sayButton = greeting;
<!DOCTYPE html>
<html>
<head></head>
<body>
<button id="say">Say "Hello World!"</button>
<script src="app.js"></script>
</body>
</html>
1 Answer
jobbol
Full Stack JavaScript Techdegree Student 17,885 PointsYou're on the right track, but you did it backwards.
What you wrote
onClick.sayButton = greeting;
What it should be
sayButton.onclick = greeting;
For one, capitalization is very sensitive. onclick
is all lowercase.
Secondly you did the dot notation backwards. Think of it as a possessive property: man's coat, baby's rattle, child's toy. Dot notation is just like that, but for programming: element.onclick
.
More documentation and usage for onclick.
Good luck out there!