Skip to content

Instantly share code, notes, and snippets.

@extra0
Last active March 6, 2017 16:25
Show Gist options
  • Save extra0/83f4e1107480ac3a9929dc98eb8b5c4c to your computer and use it in GitHub Desktop.
Save extra0/83f4e1107480ac3a9929dc98eb8b5c4c to your computer and use it in GitHub Desktop.
Active toggle
// toggle class active
$('[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