You can attach multiple event handlers to an element using jQuery’s on() method multiple times for the same event. For example, to attach two click event handlers to a button element with the ID “myButton”, you would use the following code:
$('#myButton').on('click', function() {
// first click event handler
});
$('#myButton').on('click', function() {
// second click event handler
});