Disable the first value in the select list on checkbox click
Posted
by mazhar kaunain baig
on Stack Overflow
See other posts from Stack Overflow
or by mazhar kaunain baig
Published on 2010-06-13T08:52:53Z
Indexed on
2010/06/13
9:02 UTC
Read the original article
Hit count: 227
jQuery
$('#bit_IsModule').click(function () {
if ($('#bit_IsModule:checked').val() == "true")
$("#featurename").slideUp();
else
$("#featurename").slideDown();
});
I want to disable the first value in the select list on the checkbox click ? how can i do that
© Stack Overflow or respective owner