I have a problem with the taphold-event with jquery mobile. Unfortunately nothing happens, when I long click on an element of the list.
The taphold-event looks like the following:
$('#testId').bind('taphold',function(e){
alert('taphold');
});
$('#testId').bind('click',function(e){
alert('click');
});
... and the click - event works fine.
Does anybody know what to do here?
Thanks
Mourad