$( "#target" ).click(function() { alert( "Handler for .click() called." ); });
$('#selector').on('click',function(){ //Your code here });
$( "#dataTable tbody tr" ).on( "click", function() { console.log( $( this ).text() ); });
$(selector).click();
$(document).on('click',".any_user_logout",function(){ signOut() window.location.href = '/logout' }) function signOut() { var auth2 = gapi.auth2.getAuthInstance(); auth2.signOut().then(function () { }); }
$( "#other" ).click(function() { $( "#target" ).click(); });