YUI Library JavaScript DHTML





    
Using hasClass

/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */
body {
  margin:0;
  padding:0;
}





#foo {
    margin-bottom:1em;
}




Using hasClass



  

Clicking the button will use Dom's hasClass method to test if the element has the class baz applied.


      


foo

run

(function() {
    var testClass = function(e) {
        alert(YAHOO.util.Dom.hasClass('foo', 'baz'));
    };
    YAHOO.util.Event.on('demo-run', 'click', testClass);
    YAHOO.log("The example has finished loading; as you interact with it, you'll see log messages appearing here.", "info", "example");
})();





   
  
yui_2.7.0b.zip( 4,431 k)