TLDR: Is there any hacky way to get "on hold ID/class" and "double-click id/class" on an HTML Element object without going to JS?
Longer version:
The touch functions on the HTML Element are quite limited compared to the touch object. There, we have double tap, on hold, and more.
I'm looking for a way to do a hold function on a button that I'm using in the HTML element without going into too much custom JS. My though was trying to do some hybrid of Touch object and getting info from HTML Element but those two don't share information, that is, the HTML Element can't be selected as a object in the Touch object.