I can show and hide individual fieldset rows in jQuery 3.3.1, like this:
$("div.form-row.field-construction_start_date").show();
$("div.form-row.field-construction_start_date").hide();
But let's say I want to disable an individual fieldset row and all the controls in that singular row, like this:
$("div.form-row.field-construction_start_date").prop("disabled",true);
It does not work. Might anyone have some insight as to what I am doing wrong?