JavaScript
  Home arrow JavaScript arrow Page 4 - Using Event Delegation for Mouseover Events in List Items
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
JAVASCRIPT

Using Event Delegation for Mouseover Events in List Items
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 3
    2009-05-06


    Table of Contents:
  • Using Event Delegation for Mouseover Events in List Items
  • Review: using click event handlers with HTML lists
  • Implementing event delegation with mouseover events
  • Event delegation in action

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Using Event Delegation for Mouseover Events in List Items - Event delegation in action
    ( Page 4 of 4 )

     

    In the course of the previous segment, I built a primitive HTML list to demonstrate how, through a single mouseover handler, it’s possible to modify the background color of its items.  

    The following example code annexes a couple of JavaScript functions to the unordered list, in this way highlighting its items when the mouse is placed over each of them:  

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    <title>Example on JavaScript Event Delegation (with mouseover event)</title>

    <script language="javascript">

    // get target element

    function getEventTarget(e){

    var e=e || window.event;

     return e.target || e.srcElement;

    }

    // check if target is a list item

    function highlightListItem(e){

    var target=getEventTarget(e);

    if(target.tagName.toLowerCase()==='li'){

    target.className='highlighted';

    }

    }

    // run functions when web page has been loaded

    window.onload=function(){

    if(document.getElementsByTagName&&document.
    getElementById&&document.createElement){

    var mylist=document.getElementById('mylist');

    if(!mylist){return};

    // assign 'onmouseover' event handler to unordered list (not items)

    mylist.onmouseover=function(e){

    // determine target element and highlight list item

    highlightListItem(e);

    }

    }

    }

    </script>

    <style type="text/css">

    ul{

    list-style: circle;

    }

    li{

    font: normal 10pt Arial, Helvetica, sans-serif;

    color: #000;

    }

    .highlighted{

    background: #0c9;

    }

    </style>

    </head>

    <body>

    <h1>Event delegation in JavaScript (with mouseover event)</h1>

    <ul id="mylist">

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    <li>This is an list item</li>

    </ul>

    </body>

    </html>

     

    If you analyze the above code sample closely, you’ll realize that it looks very similar to the example shown in the first section, where the event delegation technique was utilized with click handlers. But in this particular case, the approach is employed in conjunction with mouseover events.  

    If you test the above (X)HTML file on your web server, you’ll see that the background color of each list item will be modified each time the mouse is located over it. Regardless of its simplicity, this introductory example should give you the right pointers to start incorporating event delegation within your own JavaScript programs.  

    Final thoughts  

    Sad but true, we’ve come to the end of this series. Nonetheless, overall the experience has been educational, since you learned how to implement JavaScript event delegation with mouse clicks and mouseovers. Indeed, when used in a clever way, this approach can enhance the performance of JavaScript applications.  

    A final warning before I finish: in general, event delegation is well supported by most modern browsers, but you should use it carefully with other events, including keyboard actions and mouse moves. These events might be incompatible with some browsers.  

    See you in the next web development tutorial! 



     
     
    >>> More JavaScript Articles          >>> More By Alejandro Gervasio
     

       

    JAVASCRIPT ARTICLES

    - Introduction to JavaScript
    - Adding Elements to a Tree with TreeView jQue...
    - Using the Persist Argument in a TreeView jQu...
    - Using Unique and Toggle in a TreeView jQuery...
    - Using Event Delegation for Mouseover Events ...
    - Using the Animate Option in a Treeview jQuer...
    - Using HTML Lists with Event Delegation in Ja...
    - Opened and Closed Branches on a TreeView jQu...
    - Mouseover Events and Event Delegation in Jav...
    - Creating a TreeView JQuery Hierarchical Navi...
    - Event Delegation in JavaScript
    - A Look at the New YUI Carousel Control
    - Working with Draggable Elements and Transpar...
    - Displaying Pinned Handles with Resizable Con...
    - Building Resizable Containers with the Ext J...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek