Skip to content

Instantly share code, notes, and snippets.

@danbeam
Created March 25, 2011 20:37
// for everybody except IE
function replaceHtml(el, html) {
var oldEl = typeof el === "string" ? document.getElementById(el) : el;
var newEl = oldEl.cloneNode(false);
newEl.innerHTML = html;
oldEl.parentNode.replaceChild(newEl, oldEl);
/* Since we just removed the old element from the DOM, return a reference
to the new element, which can be used to restore variable references. */
return newEl;
};
// Pure innerHTML is slightly faster in IE, so change the function
/*@cc_on
function replaceHtml(el, html) {
var oldEl = typeof el === "string" ? document.getElementById(el) : el;
oldEl.innerHTML = html;
return oldEl;
}
@*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment