Handle button vclick event
Description
The following code shows how to handle button vclick event.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.8.3.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
<script type='text/javascript'>
$(window).load(function(){<!--from w ww.j av a 2 s.co m-->
$(document).ready(function(){
$.mobile.useFastClick = false;
$('#mybutton').bind('vclick',function(){
alert('clicked');
});
});
});
</script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>header</h1>
</div>
<div data-role="content">
<p>Hello Mayu</p>
<a href="#" data-role="button" id="mybutton">my button</a>
</div>
</div>
</body>
</html>