Javascript examples for jQuery Method and Property:hasClass
Chaining classes for .hasClass();
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.6.2.js"></script> <script type="text/javascript"> $(window).load(function(){/* w w w . jav a2 s. com*/ $('body').append("<div>" + ($('div').hasClass('default') && $('div').hasClass('active')) + "</div>"); }); </script> </head> <body> <div class="my active a default"></div> </body> </html>