Answers for "how to make a field disabled in jquery"

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
2

enable input jquery

$('input').prop('disabled', false);
Posted by: Guest on March-18-2020

Code answers related to "how to make a field disabled in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language