Skip to content

Instantly share code, notes, and snippets.

@jescalan
Created February 7, 2013 17:49
Show Gist options
  • Select an option

  • Save jescalan/4732730 to your computer and use it in GitHub Desktop.

Select an option

Save jescalan/4732730 to your computer and use it in GitHub Desktop.
css toggle
$('.switch').on('click', function(){
var modes = ['night', 'day'];
var current = this.hasClass('on') ? 0 : 1;
$('link[href=' + modes[current] + '.css').attr('href', + modes[~~current] + '.css');
this.toggleClass('on');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment