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();
});
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…