Is there a list that showing all supported meteor events?

I can’t seem to find one anywhere!?

What are ALL the possible events I can use in a meteor events object?

Are you talking about this?

Template.name.events({
     'eventname #element': function(e, t) {
     
      }
})

Because you can use ANY event (click, blur, focus, hover, etc.), that you can bind to an element. Meteor uses jQ event delegation behind the scenes.

If I did not understood your question correctly, please say so :wink:

I believe the Event Map in the documentation is what you’re looking for.

1 Like

Any event that jquery supports can be used in the Meteor event map.

Does this include custom events? Like show.bs.modal for bootstrap modals?

Yes, as far as I remember custom events work if they bubble.

I confirm custom events are supported.