Last active
December 16, 2015 00:49
-
-
Save UltCombo/5350767 to your computer and use it in GitHub Desktop.
XOR checkbox checked state toggler
This file contains 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
<input type="checkbox"><button>Clique para alternar estado do checkbox</button> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<script> | |
$('button').click(function() { | |
$('input')[0].checked ^= 1; | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment