jQM Template
by Ufuk Ozdemir
HTML
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css">
<script src="https://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<body>
<button id="test">Test</button>
</body>
JavaScript
$('#test').bind('taphold', function(e) {
alert("jj") ;
e.preventDefault();
return false;
});