Where to get the list of event types?
events, javascript, meteor
Solution
Meteor doesn't define the events it supports — it simply creates a cross-browser event listener wrapper. If you wanted to create custom events and trigger them, Meteor would pick them up.
The native input events supported depends on the browser: the Mozilla Developer Network reference is a good place to start.
Problem
The official documentation only says: The event's type, such as "click", "blur" or "keypress". For iOS devices the touchstart is another event which is working. Where can I get the full list of all possible events? I like for example actually to get the event for the `<select>` event `hasChanged()`. Is this based on another library?