In pure javascript/DOM is there a way to know if an element is hidden? As in I have something like this:
<div id="creator" hiddden="hidden">
<dl>
<dt> <label for="creator">Creator:</label> </dt>
<dd>
<input type="text" name="creator"/>
</dd>
</dl>
</div>
So from acquiring the form element only, is it possible to find if its hidden because an ancestor has a hidden attribute?
Many thanks