Answers for "for security profile how to enable or disable the controls based on the property in jquery"

12

jquery disable input

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

//jQuery 1.5 and below use:
$("#inputID").attr('disabled','disabled'); //disable 
$("#inputID").removeAttr('disabled'); //enable
Posted by: Guest on July-22-2019
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 "for security profile how to enable or disable the controls based on the property in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language