Answers for "bootstrap jquery disable input on click"

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
0

jquery enable disable textbox

$("input").prop('disabled', true);
$("input").prop('disabled', false);
Posted by: Guest on December-08-2020

Code answers related to "bootstrap jquery disable input on click"

Code answers related to "Javascript"

Browse Popular Code Answers by Language