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 Interactive Web Pages with JavaScript Traversing and Manipulating the DOM with JavaScript Adding Multiple Event Listeners

Challenge Task 1 of 1 javascript

I can't seem to pass this challenge. I am not sure what its asking me to do. this is what i have so far. it says to add "addEventListner".

//Select select box
var navigationSelect = document.getElementById("nav");

//Navigate to URL when select box is changed
var navigateToValue = function() {
  window.location = this.value;
}

//Send analytics data
var sendAnalytics = function() {
  //Placeholder  
}

navigationSelect.addEventListner("change", navigateToValue);
navigationSelect.addEventListner("change", sendAnalytics);

1 Answer

Dan Hayden
Dan Hayden
25,338 Points

Hi.

Looks like you have a typo in your code.

addEventListner

should be

addEventListener

HA!! thanks buddy