how to register click event jquery code example
Example 1: jquery click event
$('#selector').on('click',function(){
//Your code here
});
Example 2: jquery bind click
$( "#foo" ).bind( "click", function() {
alert( "User clicked on 'foo.'" );
});