Skip to content Skip to sidebar Skip to footer

Is There A Difference Between .change() And .on("change")?

Is there any difference between : $('selector').change(function() {}); and $('selector').on('change', function() {}); And if there is, which one should I use in most cases?

Solution 1:

No difference, internally change function would use .on(...) to bind the respective event.

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

Source


Solution 2:

The is no difference at all, they both trigger the same javascript function. You can use both in any browser that supports the addEventListener modules.

Check the list of browsers that support it: http://caniuse.com/#feat=addeventlistener

However to remove the event, you'll have to use .off( "change" ) as the jquery doc suggests

Hope it helps


Solution 3:

in accordance to method documentation $('selector').change( function() {}) is just a shortcut for $('selector').on("change", function() {});. indeed this is the same.


Post a Comment for "Is There A Difference Between .change() And .on("change")?"