Below is the HTML code that I am working with:
<div class="um-field field-date">
<p class="form-row " id="date_field">
<label class="date">
<input data-label="Date" data-value="" type="date" class="input-date um-frontend-field um-hide-field" name="date_1521080645" id="date_1521080645"> Date
</label>
</p>
</div>
I have identified a um-hide-field
class within the code above. My goal is to hide this entire div based on this class. Is it possible to achieve this?
.um-hide-field {
display:none;
}
To hide the complete div element alongside its parent.