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.

Alexey Tseitlin
5,866 Points.preventDefault();
Here is a working script that prevents default action of a clicked link. My question is why we need the "event" in the function: "function( event )"? works fine with out it - "function()".... Is there a purpose to it?
$("#imageGallery a").click(function( event ) {
event.preventDefault();
});
1 Answer

Markus Ylisiurunen
15,034 PointsHi!
In JavaScript when there is an active event listener on a specific event, it passes an event
object to the handler function. That event
object has a method called preventDefault()
which prevents the default action from happening.
I hope this explanation gives you better understanding about event
object.