Clicking the document will use Dom's getElementsByClassName
method to collect all of the elements with the class bar
applied.
getElementsByClassName
, part of the YUI Dom Collection, makes it easy to collect elements that have a given className
applied.
To illustrate the use of getElementsByClassName
, we'll create a number of <div>
s with various combinations of classNames applied. When the document is clicked, we will collect all of the elements that have the className
bar
.
Add with some markup for the demo elements, including a button to trigger the demo:
1 | <div class="bar">div class="bar"</div> |
2 | <div class="bar-baz">div class="bar-baz"</div> |
3 | <div class="bar ">div class="bar "</div> |
4 | <div class=" bar ">div class=" bar "</div> |
5 | <div class="bar baz">div class=" bar baz"</div> |
6 | <div class="bar2 baz">div class=" bar2 baz"</div> |
7 | <div class="foo">div class="foo"</div> |
8 | <div class="foo" id="bar">div class="foo" id="bar"</div> |
9 | <div class="foo bar baz">div class="foo bar baz"</div> |
10 | <p class="bar">p class="bar"</p> |
11 | <button id="demo-run">run</button> |
view plain | print | ? |
Now we will define the function that collects the elements with the className
of bar
present. The first argument of the getElementsByClassName
method is the className
we are searching for. The second argument is an optional tagName
, which will make the search much quicker. The third argument is an optional ID of an HTMLElement, or an actual HTMLElement object to use as the root node to start from.
1 | <script type="text/javascript"> |
2 | var getByClass = function() { |
3 | alert('found: ' + YAHOO.util.Dom.getElementsByClassName('bar', 'div').length + ' elements'); |
4 | }; |
5 | </script> |
view plain | print | ? |
To trigger the demo, we will use the YUI Event Utility's on
method to listen for clicks on the button.
1 | <script type="text/javascript"> |
2 | YAHOO.util.Event.on('demo-run', 'click', getByClass); |
3 | </script> |
view plain | print | ? |
This is a simple example of how to use the YAHOO.util.Dom.getElementsByClassName
method. Keep in mind that the optional arguments should be used whenever possible to maximize the performance of the search.
INFO33ms (+0) 12:56:49 AM:Dom
addClass adding yui-log
INFO33ms (+31) 12:56:49 AM:Dom
hasClass returning false
INFO2ms (+2) 12:56:49 AM:example
The example has finished loading; as you interact with it, you'll see log messages appearing here.
INFO0ms (+0) 12:56:49 AM:global
Logger initialized
Note: You are viewing this example in debug mode with logging enabled. This can significantly slow performance.
Copyright © 2008 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Copyright Policy - Job Openings