Answers for "how to disable a select box in jquery"

3

jquery disable select

$('#pizza_kind').prop('disabled', false);
Posted by: Guest on May-29-2020
2

disable option dropdown jquery

//disable by value
$("#ddlList option[value='jquery']").attr("disabled","disabled");

//disable by text
$('#ddlList option:contains("HTML")').attr("disabled","disabled");
Posted by: Guest on January-20-2021
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 disable a select box in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language