Schedule event



examples/javascript/schedule_event.html
Nothing to see here.

<script>
console.log('now');
setTimeout(function() {
   console.log('later');
      }, 2000);
</script>