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 trialMagdalena Misiuna
14,873 Pointsadding multiple types = click and focus to addEventListener
I have the same code applied to addEventListener ('click', =>){} and addEventListener ('focus', =>){}. Is there a way to combine click and focus in one addEventListener to avoid doubling the code? Could it be a function?
1 Answer
Steven Parker
231,236 PointsYou have to set a separate listener for each event type. But they could share the same handler function, just define it separately and name it when you set the listener.
let hander = e => { /* handler code */ };
myElement.addEventListener('click', handler);
myElement.addEventListener('focus', handler);