YUI recommends YUI3.
YUI 2 has been deprecated since 2011. This site acts as an archive for files and documentation.
This documentation is no longer maintained.
Clicking the button will use Dom's removeClass
method to remove the class baz
from the element.
removeClass
, part of the YUI Dom Collection, makes it easy to remove a given className from an element.
To illustrate the use of removeClass
, we'll create a <div>
called foo
with the classNames of bar
and baz
. When the button is clicked, we will remove the className baz
from the element.
Add some markup for the demo element and a button to trigger the demo:
Now we will define the function that removes the class baz
from the foo
element. The first argument of the removeClass
method is either the ID of an HTMLElement, or an actual HTMLElement object. The second is the className
to be removed.
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.removeClass
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.
All YUI 2.x users should review the YUI 2.8.2 security bulletin, which discusses a vulnerability present in YUI 2.4.0-2.8.1.
Copyright © 2013 Yahoo! Inc. All rights reserved.