YUI Library JavaScript DHTML





    
Using filter

/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */
body {
  margin:0;
  padding:0;
}






#selector-demo ul {
    float:left;
}
#selector-demo ol {
    clear:both;
}




Using filter



  

Clicking the button will alert the number of items with the class of "selected" applied.


      



    

            lorem
            
  • ipsum

  •         
  • dolor

  •         
  • sit

  •     

    

            
  • lorem

  •         ipsum
            
  • dolor

  •         
  • sit

  •     

    

            
  • lorem

  •         
  • ipsum

  •         
  • dolor

  •         sit
        

    

            
  1. lorem

  2.         
  3. ipsum

  4.         
  5. dolor

  6.         sit
        

    run


(function() {
    var nodes = document.getElementById('selector-demo').getElementsByTagName('li');
    var handleClick = function(e) {
        nodes = YAHOO.util.Selector.filter(nodes, '.selected');
        alert(nodes.length); 
    };
    YAHOO.util.Event.on('demo-run', 'click', handleClick);
    YAHOO.log("The example has finished loading; as you interact with it, you'll see log messages appearing here.", "info", "example");
})();





   
  
yui_2.7.0b.zip( 4,431 k)