With so many different devices, doing so many different things I thought it might be useful to create a universal listener. This is my simple attempt that, of course, cannot work. But it may just stimulate someone into coming up with a real solution:-
$("#allEvents").on("*", function(evnt) {
console.log(evnt.type);
});
<div id="allEvents">
this is some text inside div allEvents
</div>
Alternatively, is there something out there that can tell a user what events are fired when they do certain things on their devices?