Answers for "add disabled property jquery"

5

jquery remove disabled property from button

$('#edit').click(function(){ // click to
            $('.inputDisabled').attr('disabled',false); // removing disabled in this class
 });
Posted by: Guest on September-14-2020
0

using jquery how to add disabled to a html tag

$(element). prop('disabled', true);
Posted by: Guest on April-15-2021
1

jquery remove disabled property from button

$("#edit").click(function(event){
   event.preventDefault();
   $('.inputDisabled').prop("disabled", false); // Element(s) are now enabled.
});
Posted by: Guest on September-14-2020

Code answers related to "add disabled property jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language