Created
February 7, 2013 17:49
-
-
Save jescalan/4732730 to your computer and use it in GitHub Desktop.
css toggle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('.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