Answers for "disable all input,button and select jquery in a div"

2

jquery disable all input form

//In older versions you could use attr. 
//As of jQuery 1.6 you should use prop instead:
$("#target :input").prop("disabled", true);

//To disable all form elements inside 'target'. See :input:
//Matches all input, textarea, select and button elements.

//If you only want the <input> elements:
$("#target input").prop("disabled", true);
Posted by: Guest on August-02-2021
1

jquery disable option by value

$("select option[value='"+ $variable + "']").attr('disabled', true);
Posted by: Guest on September-29-2021

Code answers related to "disable all input,button and select jquery in a div"

Code answers related to "Javascript"

Browse Popular Code Answers by Language