Skip to content

Instantly share code, notes, and snippets.

@dusblinov
Created May 25, 2015 12:56
Show Gist options
  • Save dusblinov/b5ebca736519035694da to your computer and use it in GitHub Desktop.
Save dusblinov/b5ebca736519035694da to your computer and use it in GitHub Desktop.
$('.flat-toggle').on('click', function() {
$(this).toggleClass('on');
});
$(document).ready(function(){
$('.flat-toggle').on('click', function() {
if ($(this).hasClass('on')) {
$(this).removeClass('on');
} else {
$(this).addClass('on');
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment