What is the difference between an event handler and a callback function?
A callback is function(method) you pass as an argument to another function(method). The function(method) receiving the parameter can call it, or share it so some other function(method) in the system can call it.
An event handler is a function(method) called when an event happens. It can be a callback.