Answers for "how to set input button disabled in jquery"

13

jquery add disabled to button

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

disable input field with jquery

// Disable #x
$( "#x" ).prop( "disabled", true );
 
// Enable #x
$( "#x" ).prop( "disabled", false );
Posted by: Guest on September-11-2020

Code answers related to "how to set input button disabled in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language