UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

13 lines (11 loc) 246 B
// 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;