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

why button is not set to enable ?

hey check out my code here http://codepen.io/mehra_as/pen/bEKWBq the button when all the condition evaluates to true is disable...!

1 Answer

Sean T. Unwin
Sean T. Unwin
28,690 Points

Call enable() within each of the hide blocks of matchEvent() and checkEvent().

The top answer to this StackOverflow explains why onClick events may not work on disabled buttons. tl;dr since the button is disabled some browsers may not register the button click at all, essentially removing it from the DOM.