$('start').on('click', '#startQuiz', function(event) code example
Example 1: on click jquery
$( "#dataTable tbody tr" ).on( "click", function() {
console.log( $( this ).text() );
});
Example 2: jquery onclick function
$( "#other" ).click(function() {
$( "#target" ).click();
});