Clicking the button will use Dom's hasClass
method to test if the element has the class baz
applied.
hasClass
, part of the YUI Dom Collection, makes it easy to test whether a given className is present on an element.
To illustrate the use of hasClass
, we'll create a <div>
called foo
with the className of bar
and baz
. When the button is clicked, we will test whether the className
baz
is present.
Add some markup for the demo element:
Now we will define the function that tests whether foo
has the className
baz
applied. The first argument of the hasClass
method is either the ID of an HTMLElement, or an actual HTMLElement object. The second is the className
we are testing for. The hasClass
method returns true
or false
, depending on whether the className
exists on the element.
To trigger the demo, we will use the YUI Event Utility's on
method to listen for clicks on the button.
This is a simple example of how to use the YAHOO.util.Dom.hasClass
method. One of the benefits of this method is that it works regardless of how many className
s are present in the class attribute.
Note: Logging and debugging is currently turned off for this example.
Copyright © 2008 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Copyright Policy - Job Openings