Answers for "add disabled in jquery"

13

jquery add disabled to button

$("#button").attr("disabled", true);
Posted by: Guest on July-06-2020
0

not disabled jquery

$(document).ready(function(){
  $(':checkbox.selectall').on('click', function(){
    $(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').prop("checked", $(this).prop("checked"));
    $(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').trigger("change");
  });
});
Posted by: Guest on April-28-2020

Code answers related to "add disabled in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language