Ajax Layer JavaScript DHTML




DOM Example: addClass




YAHOO.namespace('example.dom');
YAHOO.example.dom.init = function() {
   var add = function(e) {
      YAHOO.util.Dom.addClass('test', 'bar');
      alert(document.getElementById('test').className);
   };
   
   YAHOO.util.Event.addListener(document, 'click', add);
};
YAHOO.util.Event.addListener(window, 'load', YAHOO.example.dom.init);





   

DOM Example: addClass


   

This example demonstrates how to use Dom.addClass to add a class to a given element.


   

Click anywhere to test.


   
                  



           
       
yui.zip( 3,714 k)