Skip to content

Instantly share code, notes, and snippets.

@weber
Created August 29, 2013 10:43
Show Gist options
  • Select an option

  • Save weber/6376609 to your computer and use it in GitHub Desktop.

Select an option

Save weber/6376609 to your computer and use it in GitHub Desktop.
jquery альтернатива toggle
(function () {
var alternate = true;
$('#id').click(function () {
if (alternate) {
function1();
} else {
function2();
}
alternate = !alternate;
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment