...

/

Quiz on Events and Event Handlers

Quiz on Events and Event Handlers

Check your understanding of the concepts of events and event handlers.

We'll cover the following...
Technical Quiz
1.

The syntax for event handler assignment is:

A.
$('selector').event(function(eventObj){
    // response to event goes here
});
B.
$('selector').on('event', function(eventObj){
    // response to event goes here
});
C.
$('selector').on({
  event: function(){
    // response to event goes here
  }
});
D.

All of the above


1 / 6