bind a click event using jquery for the selector code example
Example: jquery bind click
$( "#foo" ).bind( "click", function() {
alert( "User clicked on 'foo.'" );
});
$( "#foo" ).bind( "click", function() {
alert( "User clicked on 'foo.'" );
});