JavaScript
  Home arrow JavaScript arrow Page 2 - 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 - Review: using click event handlers with HTML lists
    ( Page 2 of 4 )

     

    Now I'd like to go over what we covered in the last article in a little more detail. We used JavaScript event delegation with a simple HTML list; now I'd like to list the full source code corresponding to the practical example created in the last article, where this approach was utilized for applying a basic highlighting effect on each item of the list in question via a single click handler.

    Essentially, the example was coded as depicted below:  

    <!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 click event)</title>

    <script language="javascript">

    // get target element (excerpted)

    function getEventTarget(e){

    var e=e || window.event;

     return e.target || e.srcElement;

    }

    // check if target is a list item (excerpted)

    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 'onclick' event handler to unordered list (not items)

    mylist.onclick=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 click event)</h1>

    <ul id="mylist">

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    </ul>

    </body>

    </html> 

    Hopefully, the above example code should be clear enough to demonstrate how useful event delegation can really be for reducing the number of click handlers necessary to highlight the items of an HTML list. In this case, the background color of these items will be modified each time a mouse click occurs; this process is performed thanks to the bubbling phase of only one click handler assigned to the entire list. Not too hard to follow, right? 

    At this point, you should have a solid grounding in how to use event delegation with a few mouse clicks. So it’s time to learn how to implement this approach successfully with mouseovers. 

    This topic will be discussed in more detail in the section to come. Therefore, click on the link below and read the following segment. 



     
     
    >>> 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 5 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek