The purpose is to;
If checkbox is disabled, do nothing.
If checkbox is enabled and checked, set the style of a button.
Here is what I’ve got so far;
$(document).ready(function (e) {
$(".checkbox").live("click", function () {
if ($(this).hasAttribute('disabled')) {
return false;
}
var isAnyChecked;
$("input[type=checkbox]").each(function () {
var checkedValue = $(this).attr("checked");
if (checkedValue == "checked") {
isAnyChecked = true;
}
});
if (isAnyChecked) {
$("#<%= btnConfirm.ClientID %>").css("display", "block");
} else {
$("#<%= btnConfirm.ClientID %>").css("display", "none");
}
}); });
I’ve tried .is(':disabled'), .hasAttr(), .prop() and .attr(). Any help would be greatly appreciated.
You have to check whether thedisabledattribute is true:.attr('disabled').Or, better, use
.is(':disabled').—EDIT: So it seems that
.attris now deprecated for this use (see http://api.jquery.com/attr/)The preferred way is:
It has to be noted that this still work as of today:
Try it here: https://jsfiddle.net/Robloche/phaqfrmj/