how to bind click event listener to button in jquery code example
Example 1: jquery click function
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
Example 2: jquery bind function to multiple events
$('#element').on('keyup keypress blur change', function(e) {
// e.type is the type of event fired
});