I tried implementing Tap-hold function of jquerymobile as given in one of its demos

<!DOCTYPE html> 
<html> 
<head> 
<title>jQuery Mobile Events</title> 
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
<script type="text/javascript">

$( function() {

  $('body').bind( 'taphold', function( e ) {
    alert( 'You tapped and held!' );
    e.stopImmediatePropagation();
    return false;
  } );  

  $('body').bind( 'swipe', function( e ) {
    alert( 'You swiped!' );
    e.stopImmediatePropagation();
    return false;
  } );  

} );

</script>  

</head>

<body> 

<div data-role="page" id="home">

  <div data-role="header">
    <h1>jQuery Mobile Events</h1>
  </div>

  <div data-role="content"> 
    <p>Try:</p>
    <ul>
      <li>Tapping and holding</li>
      <li>Swiping</li>
    </ul>
  </div>

</div>

</body>
</html>

but swipe is not working at all in opera widget emulator and tap-hold is working very weirdly, it works when u tap twice and then swipe it doesn't work on hold. I tried removing binding to swipe function but there was no change.

link|improve this question
What opera product and version are you talking about? – naugtur Mar 7 '11 at 11:08
I was testing it on opera mobile widget emulator which comes with operamobile 10.1 beta (widget emulator only comes with this version I think)and here is the link of above mentioned emulator opera.com/developer/tools – Junaid Apr 3 '11 at 12:01
I know it's weird, but try cerating a div with an id and bind events to that. If it doesn't help, then it's a compatibility issue. BTW JQMalpha4 is out. Try it. you are using alpha1 which is REALLY old – naugtur Apr 4 '11 at 13:17
@Junaid did you find a solution? – karlcow Oct 27 '11 at 20:23
No couldn't find anything.... – Junaid Nov 3 '11 at 14:55
feedback

1 Answer

Maybe the emulator does not use tap event, but only a click event. When clicked does not emulate tap event.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.