-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Callback? #22
Comments
Right now i'm using like this $("#choices .switch-button-button, #choices .switch-button-background").click(function(e) {
if($('#choices .switch-button-background').hasClass('checked')) {
//do something
} else {
//do something
}
}); |
Hi, unfortunately I don't have much time to maintain this old plugin and it's been really a long time since I used it... If I am not mistaken, you should be able to use |
Make change " input type="checkbox" value="1" onchange="if(this.checked){ alert('a'); }else {alert('b')}" |
Is there any callback option?
The text was updated successfully, but these errors were encountered: