Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to jQuery and I want to know how to show the date field on a form after a click(select) on the check box and hide it after unselecting it. Below is the screenshot. - Thank you.

enter image description here

share|improve this question
10  
did you try with jquery documentation? It's easy and examples are very useful and sample. Try with research effort – Leandro Feb 12 '12 at 3:22
2  
What have you tried? – Andrew Whitaker Feb 12 '12 at 3:22
possible duplicate of How to hide/show content when checkbox is checked/unchecked? – Felix Kling Feb 17 '12 at 17:38

closed as not a real question by casperOne Jun 7 '12 at 13:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 3 down vote accepted

HTML

<label for="chkEle">Check This</label>
<input type="checkbox" name="chkEle" />
<div id="divEle" style="display:none;"><date stuff></div>

JS

$("input[name=chkEle]").change(function(e) {
    $("#divEle").toggle();
});

.change is triggered even if the label is clicked instead of the checkbox. This also allows you to dynamically make change in js later. For instance if you wanted to force the checkbox selection on page load, then at the end of you code you could add $("input[name=chkEle]").change(); and that would trigger the change both on the back end and visually

share|improve this answer
Thank you, this worked well. – Fayde Feb 12 '12 at 5:47

Just replace the selectors with whatever your appropriate ones are:

$('checkbox_selector').click(function ()
{
    $('date_field_selector').toggle();
});
share|improve this answer
I think he means show & hide the text inside the date field, not the actual field. – elclanrs Feb 12 '12 at 3:24
$('#checkBox').click(function() {
    $('#dateBox')[this.checked ? "show" : "hide"]();
});
share|improve this answer
This doesn't really address the problem as it defeats the purpose of having a checkbox upon which he could later check the state in order to preform more functions. Plus, this could cause visual errors (as I have found) in that a user can click a a checkbox label and have no effect on the checkbox itself, whereas using .change is affected even if a label is clicked instead of the actual checkbox – SpYk3HH Feb 12 '12 at 3:27

Not the answer you're looking for? Browse other questions tagged or ask your own question.