UNPKG
dom-tools
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
A tiny collection of DOM helpers for IE8+.
github.com/dennisduong/dom-tools
dennisduong/dom-tools
dom-tools
/
src
/
hide.js
10 lines
(8 loc)
•
159 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
// IE8+
//
// Snippet from:
// http://youmightnotneedjquery.com/#hide
function
hide
(
/* Element */
el)
{ el.style.display =
'none'
; }
module
.
exports
= hide;