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?
Simply this line of code will disable all input elements
$('#yourdiv *').prop('disabled', true);