Answers for "Input Text to Enable Button with jQuery when all fields"

0

Input Text to Enable Button with jQuery when all fields

//jQuery 1.6+ use:
$("#submitButtonID").prop('disabled', true); //disable 
$("#submitButtonID").prop('disabled', false); //enable

//jQuery 1.5 and below use:
$("#submitButtonID").attr('disabled','disabled'); //disable 
$("#submitButtonID").removeAttr('disabled'); //enable
Posted by: Guest on July-26-2019

Code answers related to "Input Text to Enable Button with jQuery when all fields"

Code answers related to "Javascript"

Browse Popular Code Answers by Language