hi
i want to check the checkbox after checking the checkbox, listbox will visible and unchecking checkbox listbox will invisible.
here my code
<script type="text/javascript">
$(document).ready(function () {
if( $("#myCheckbox").click(function () {
$('#mycheckbox').attr('checked', 'checked');
$('#Select1').show();
}));
else (
$("#myCheckbox").click(function () {
$('#myCheckbox').is(':checked')
$('#mycheckbox').removeAttr('checked');
$('#Select1').hide();
}));
});
</script>
Go to the complete details ...