Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8212251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T10:41:29+00:00 2026-06-07T10:41:29+00:00

To add a click event handler to an element, is .bind(‘click’) or .click better?

  • 0

To add a click event handler to an element, is .bind('click') or .click better? What makes the difference? Any performance aspects?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T10:41:32+00:00Added an answer on June 7, 2026 at 10:41 am

    There is no difference. Internally, click just calls on, and bind also just calls on. So for a very minor speed increase, just use on:

    $("#someId").on("click", function () {
        //Do stuff
    });
    

    Here’s the relevant part of the jQuery 1.7.2 source for the .click() method:

    return arguments.length > 0 ? this.on(name, null, data, fn) : this.trigger(name);
    

    And the source of the .bind() method:

    return this.on(types, null, data, fn);
    

    If you’re using jQuery below version 1.7…

    Note that the .on() method was introduced in jQuery 1.7. If you are using an older version, .click() will internally just call .bind() instead. Here’s the source of .click() from 1.6.2:

    return arguments.length > 0 ? this.bind(name, data, fn) : this.trigger(name);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to add a click event on the element that is return
I can't seem to add a click event handler to the Dialog header/title. Something
Is it possible to add some kind of an event/handler when an element is
I am trying to add click event to one of the widgets that use
How can I add click event to newly added item of menu? Below is
How can you add a click event to dynamically created menu item? I thought
Is it possible to add button click event by clicking design of axml? if
I would like to be able to add a click event to a entity
i am trying to add class on on-click jquery event for that i am
I insert dynamically some images used as buttons and add an onClick event. $(img.image_edit_customer).live(click,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.