Skip to content

Instantly share code, notes, and snippets.

@danbeam
Created March 25, 2011 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danbeam/887592 to your computer and use it in GitHub Desktop.
Save danbeam/887592 to your computer and use it in GitHub Desktop.
// 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