dom-tools
Version:
A tiny collection of DOM helpers for IE8+.
19 lines (16 loc) • 431 B
JavaScript
// IE8+
//
// Attempts to mirror $.before for htmlString and Elements.
//
// Portion of this method is a snippet from:
// http://youmightnotneedjquery.com/#before
//
function before(/* Element */ el, elementOrText) {
if (typeof elementOrText === 'string') {
el.insertAdjacentHTML('beforebegin', elementOrText);
} else {
// assumes node
el.parentNode.insertBefore(elementOrText, el)
}
}
module.exports = before;