Skip to content

Instantly share code, notes, and snippets.

@cristianciofu
Created September 17, 2013 13:09
Show Gist options
  • Save cristianciofu/6594104 to your computer and use it in GitHub Desktop.
Save cristianciofu/6594104 to your computer and use it in GitHub Desktop.
enable / disable dropdown
$(document).ready(function() {
$("#chkdwn2").click(function() {
if ($(this).is(":checked")) {
$("#dropdown").prop("disabled", true);
} else {
$("#dropdown").prop("disabled", false);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment