Galera I mounted a context menu that works like this, when the user right-clicks on a 'tr' table it opens.
I do this by using jQuery:
// Verifica se abre o menu
$("tr").mousedown(function (e) {
//AQUI FICA AS FUNÇÕES DO MENU
});
Well, the problem is that when it's opened on a mobile phone, you do not have the mouse.
I wanted to know if you have any way to identify a click for 2 seconds, and open the menu.
Then it should open either with the right button or a long click.