Facebook
From Corrupt Bird, 6 Years ago, written in HTML5.
Embed
Download Paste or View Raw
Hits: 297
  1.  src="http://code.jquery.com/jquery-3.3.1.min.js"
  2.  integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
  3.  crossorigin="anonymous"></script>
  4.  
  5.         .active{
  6.                 background-color: blue !important;
  7.         }
  8.  
  9.         $(document).on('click', 'div.waving-wrap button', function(){
  10.             removeActiveClass();
  11.                 $(this).addClass('active');    
  12.  
  13. });
  14.  
  15. function removeActiveClass(){
  16.         $('div.waving-wrap button').each(function(){
  17.                         $(this).removeClass('active');
  18.         });
  19. }