// Multiple events, same handler $( "input" ).on( "click change", // Bind handlers for multiple events function() { console.log( "An input was clicked or changed!" ); } );