callback functions arguments

callback functions arguments

callback functions can ether be a reference to a normal function or a anonymous function
ie

  
$( "#dataTable tbody tr" ).on( "click", function() {
console.log( $( this ).text() );
}); or

      
function notify( event ) {
alert( "clicked" );
}
$( "button" ).on( "click",{name:bob}, notify );

my question is
if there data is provided via an event object is there any way to pass the event object to the function if a autonomous function is used?