Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Aaron Smith
19,091 PointsIs there a difference between binding to submit button's onClick event vs. form element's onSubmit event?
My instinct was to bind the new guest handler to the submit button's onClick
. It seemed to function just fine. Is there a reason why it's better to bind to the form element's onSubmit
?
1 Answer

Steven Parker
216,717 PointsTwo main differences that come to mind for me:
- a click event is generated by the element clicked on, and a submit event is generated by the form
- there can be more than one way to generate a submit event on a form
Ryan Oldford
11,992 PointsRyan Oldford
11,992 PointsYou can submit the guest by pressing Return on your keyboard without clicking.