Is there any simplified way to make a selector listen to various types of events?
Example:
$('meu-seletor').on(['click','touchstart','keyup'],function(){
// minha ação aqui
});
Currently the only solution I know of would be to create multiple .on()
each calling a single event. Is it possible to do it any other way?