Find an element that contains a specified class using jquery
HTML Code :
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Find an element that contains a specified class</title> </head> <body> <!DOCTYPE html> <html> <head> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <meta charset="utf-8"> <title>JS Bin</title> <style> .divclass { width: 90px; height: 75px; margin: 5px; background-color:#F3E2A9 } </style> </head> <body> <div id="div1" class="divclass"></div> <div id="div2" </div> <div id="div3" </div> </body> </html>
JavaScript Code :
console.log($( "#div1" ).hasClass( "divclass" ).toString()); console.log($( "#div2" ).hasClass( "divclass" ).toString()); console.log($( "#div3" ).hasClass( "divclass" ).toString());
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
HTML Code :
JavaScript Code :