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>

Click to view the demo





















Home »
  jQuery Mobile »
    Example »




Button
Button Event
Button Icon
Button Text
Checkbox
Collapsible
Date
Dialog
Event
Footer
Form
Header
Icon
Input
Layout
Listview
Listview Divider
Listview Item
Loader
mobile_settings
Navbar
Page
Page Event
Popup
Radio
Select
Slider
Switch
Textarea
Theme