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

jough
jough
12,877 Points

what is the difference between .on(click) and .onclick() ?

what is the difference between .on(click) and .onclick() , and when should you use one vs another?

1 Answer

Steven Parker
Steven Parker
229,732 Points

I'm not familiar with ".onclick()". But if you're asking about the jQuery function .click( handler ), it is (as described in the documentation) just a shorthand for: .on( "click", handler ). There's no difference.

But there are other ways to use .on(), including the creation of delegated handlers.

For complete details, see the documentation pages for .click() and .on().