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
/
html.js
13 lines
(11 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// IE8+
//
// Attempt to mirror $(el).html() API
function
html
(
/* Element */
el,
/* string? */
htmlString
) {
if
(
typeof
htmlString ===
'string'
) { el.
innerHTML
= htmlString; }
else
{
return
el.
innerHTML
; } }
module
.
exports
= html;