Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script type="text/javascript">
- function findMatches(){
- console.log($(".a",".b",".c")); // for testing
- }
- </script>
- <div id="red-text" onClick="findMatches()" style="color:red;">
- <p>Click here and check the Console Log</p>
- </div>
- <div class="a">
- <p>Class A</p>
- </div>
- <div class="a b">
- <p>Class A B</p>
- </div>
- <div class="a b c">
- <p>Class A B C</p>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement