Introduction

elem.hidden is a new property that allows to hide elements and detect whether they are hidden.

The browser support isn't great so I want to shim it. If I were to shim this property what should it be shimmed to in terms of setting a CSS property through elem.style.

Naive implementation of Shim

Object.defineProperty(HTMLElement.prototype, "hidden", {
  get: function get() {
    return this.style.<???>;
  },
  set: function set(v) {
    this.style.<???> = v ? <???> : <???>
  },
  configurable: true
});

Question

  • Should it set elem.style.display to "none" or <original value> ?
  • Should it set elem.style.visibility to "hidden" or "visible" ?
link|improve this question

Most browsers that don't support the hidden attribute also don't support Object.defineProperty. – kennebec Jan 26 at 17:22
@kennebec works in >= IE8, and other browsers are usually at their latest version where it works as well. – Esailija Jan 26 at 17:23
@kennebec hence it's the naive implementation. The full shim uses a shimmed Object.defineProperty for IE8+ and pals and uses a htc file for IE6/7 – Raynos Jan 26 at 17:42
feedback

2 Answers

up vote 2 down vote accepted

Browsers are required to implement the hidden attribute as [hidden] { display:none }

See Boris Zbarsky's answer to Force browser to ignore HTML 5 features, and the subsequent comments.

Note that this is done via the user-agent style sheet, so it has a very low specificity, and is easily overridden by a more specific style, even those that don't mention the hidden attribute.

Although I think this is a terrible way to implement the hidden attribute, those are the rules. The nearest you can get to that behaviour is to put [hidden] { display:none } as near as you can to the very start of the first stylesheet on your HTML page, rather than applying directly to the style property of the element, where it will have a very high specificity.

In terms of the element property, the HTML5 spec says "The hidden IDL attribute must reflect the content attribute of the same name.", so that's the only thing you should be adding via Object.defineProperty. However, kennebec's comment that Object.defineProperty isn't much more widely supported is probably valid.

link|improve this answer
Since "it's a terrible way to implement the hidden attribute" what would be a better way? – Raynos Jan 26 at 17:42
@Raynos - That's an interesting question. For browsers, I think it would have been better to create a new css property that had a similar behaviour to display:none or visibility:collapse. Suppose you could say something like [hidden] { -moz-relevance:irrelevant; } etc. then it would be overridable only by another css rule targeting that particular property. The downside would be another addition to the proliferation of CSS properties that already hide content. – Alohci Jan 26 at 17:57
1  
@Raynos - IMHO, It should be implemented the same (or nearly the same) as an <input type="hidden" />. Ie, you can't accidentally override it with css: jsfiddle.net/WXy4W – gilly3 Jan 26 at 18:02
feedback

visibility: hidden elements still need to be rendered as they take space on the screen, so display: none is much closer to .hidden = true because display: noneelements can and will be ignored rendering-wise.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.