I\'m working on a mobile web site that has to work on a variety of devices. The one\'s giving me a headache at the moment are BlackBerry.
We need to support both key
Usually this works as well:
$('#buttonId').on('touchstart click', function(e){ e.stopPropagation(); e.preventDefault(); //your code here });