I can’t seem to find one anywhere!?
What are ALL the possible events I can use in a meteor events object?
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
Any event that jquery supports can be used in the Meteor event map.
Yes, as far as I remember custom events work if they bubble.
I confirm custom events are supported.