Skip to content

Instantly share code, notes, and snippets.

@stecb
Created June 28, 2012 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stecb/3011759 to your computer and use it in GitHub Desktop.
Save stecb/3011759 to your computer and use it in GitHub Desktop.
One line add/remove class - js/jquery/mootools
// You know you can write this (96 bytes):
if ( top < 10 ){
header.removeClass('scrolled');
} else {
header.addClass('scrolled');
}
// in this way (60 bytes)?
header[ top < 10 ? 'removeClass' : 'addClass' ]('scrolled');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment