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.displayto"none"or<original value>? - Should it set
elem.style.visibilityto"hidden"or"visible"?
Object.definePropertyfor IE8+ and pals and uses a htc file for IE6/7 – Raynos Jan 26 at 17:42