I'm not sure how to accomplish this. What I want to do is to hide a div based on a checkbox value. This is my code for the toggle.
appreciate any help
.always is the checkbox
$(document).ready(function() {
$('.always').click(function() {
$('#dates').toggle();
});
});
.toggle()
takes a boolean as well, like this:
$(function () {
$('.always').change(function () {
$('#dates').toggle(!this.checked);
}).change(); //ensure visible state matches initially
});
You can test it out here. I assume in the above you want the #dates
hidden if .always
is checked, that's what it'll do.
$('.always').change(function() {
$('#dates').toggle(!this.checked);
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With