Skip to content

Instantly share code, notes, and snippets.

@extra0
Created May 21, 2017 12:30
Show Gist options
  • Save extra0/caf75c6897db722fceac175e1621b433 to your computer and use it in GitHub Desktop.
Save extra0/caf75c6897db722fceac175e1621b433 to your computer and use it in GitHub Desktop.
Data-Toggle
// toggle class with block
$('[data-toggle]').on('click', function(){
$(this).toggleClass('active');
$(''+ $(this).attr('data-toggle') +'').toggleClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment