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.

YUI Library Examples: Dom Collection: Using addClass

Dom Collection: Using addClass

Clicking the button will use Dom's addClass method to add the class baz to the element.

foo

Using addClass

addClass, part of the YUI Dom Collection, makes it easy to add a given className to an element.

To illustrate the use of addClass, we'll create a <div> called foo with the className of bar. When the button is clicked, we will add the className baz to the element.

Add some markup for the demo element and a button to trigger the demo:

Now we will define the function that adds the class baz to the foo element. The first argument of the addClass method is either the ID of an HTMLElement, or an actual HTMLElement object. The second is the className to be added.

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 Dom.addClass method. One of the benefits of this method is that it works regardless of how many classNames are present in the class attribute.

Copyright © 2013 Yahoo! Inc. All rights reserved.

Privacy Policy - Copyright Policy - Job Openings