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 trial

JavaScript

Web 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;
Sean T. Unwin
Sean T. Unwin
28,690 Points

We're going to need a little more information, such as what trouble you are having and the related lesson. Thank you.

Dave McFarland
Dave McFarland
Treehouse Teacher

Lyric

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
STAFF
Dave McFarland
Treehouse Teacher

Lyric Abbott

One 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;

THANK YOU SO MUCH