Where to get a list of event types?

The official documentation says only:

The type of event, for example, click, blur, or click.

For iOS devices, touchstart is another event that works. Where can I get a complete list of all possible events? I like, for example, actually getting an event for an event <select> hasChanged(). Is it based on another library?

+5
source share
2 answers

Meteor does not define supported events - it simply creates an event listener wrapper in a cross browser. If you want to create custom events and fire them, Meteor collects them.

: Mozilla Developer - .

+7

Th docs , DOM click, focus, blur, ..

DOM , , , .

Javascript .

+5

All Articles