Handle listview mouse over event
Description
The following code shows how to handle listview mouse over event.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css">
</head><!--from w w w . ja v a 2 s . c o m-->
<body>
<div data-role="page" id="pageOne">
<div data-role="header">
<h1>Title of Page One</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li><a href="#">Link One </a></li>
<li><a href="#">Link Two </a></li>
</ul>
</div>
</div>
<script type='text/javascript'>//<![CDATA[
$('#pageOne').live('pageinit',function(event){
$('li').bind('mouseover', function(){
alert("mouseover");
return false;
});
$('li').click(function(){
alert("click");
});
});
//]]>
</script>
</body>
</html>