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 trialLyric Abbott
35,595 PointsWeb pages with Java script
After line 4 in the app.js file, assign the greeting event handler to the click event on the sayButton.
The code:
βvar sayButton = document.getElementById("say");
var greeting = function() {
alert("Hello World!");
}
greeting=sayButton;
Dave McFarland
Treehouse TeacherLyric
To put code into a forum post use triple back ticks -- ``` β around the code. I fixed your code here, but in the future here's a forum discussion that describes how to add HTML, CSS, JavaScript or other code to the forum: https://teamtreehouse.com/forum/posting-code-to-the-forum
1 Answer
Dave McFarland
Treehouse TeacherOne way to attach a function to an event (create an event handler) is to select the element, then add a dot, followed by the event name, then use = to assign the function:
sayButton.onclick = greeting;
Lyric Abbott
35,595 PointsTHANK YOU SO MUCH
Sean T. Unwin
28,690 PointsSean T. Unwin
28,690 PointsWe're going to need a little more information, such as what trouble you are having and the related lesson. Thank you.