Answers for "disable in jquery textbox"

2

enable input jquery

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

jquery enable textbox

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

Code answers related to "disable in jquery textbox"

Code answers related to "Javascript"

Browse Popular Code Answers by Language