“habilitar select jQuery” Código de respuesta

jQuery deshabilitar seleccione

$('#pizza_kind').prop('disabled', false);
Lazy Locust

Deshabilitar el campo de entrada con jQuery

// Disable #x
$( "#x" ).prop( "disabled", true );
 
// Enable #x
$( "#x" ).prop( "disabled", false );
Jaskaran

habilitar select jQuery

if ($("#pizza").is(":checked")) {
	$('#pizza_kind').prop('disabled', false);
} else {
 	$('#pizza_kind').prop('disabled', true);
}
Energetic Elephant

jQuery habilitar textbox

// Disable #x
$( "#x" ).prop( "disabled", true );
 
// Enable #x
$( "#x" ).prop( "disabled", false );
Annoyed Angelfish

Respuestas similares a “habilitar select jQuery”

Preguntas similares a “habilitar select jQuery”

Más respuestas relacionadas con “habilitar select jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código