Html – disable all form elements inside div

fieldformshtmljquery

is there a way to disable all fields (textarea/textfield/option/input/checkbox/submit etc) in a form by telling only the parent div name in jquery/javascript?

Best Answer

Try using the :input selector, along with a parent selector:

$("#parent-selector :input").attr("disabled", true);