Table of contents Chapter index Previous slide Next slide 410
Processing events in JavaScript

Writing program scripts with JavaScript
Processing events in JavaScript
  • If multiple events arrive at once, then multiple eventIn functions are called

  • The optional eventsProcessed function is called after all (or some) eventIn functions have been called

    function eventsProcessed ( ) {
        . . .
    }