innerHTML () este nativ și returnează conținutul unui nod DOM (de exemplu, I live inside a div.
externalHTML () nu este, care ar include nodul DOM curent (de exemplu I live inside a div.
). Aceasta este o versiune jQuery capabilă să lanseze acest lucru.
$.fn.outerHTML = function()( // IE, Chrome & Safari will comply with the non-standard outerHTML, all others (FF) will have a fall-back for cloning return (!this.length) ? this : (this(0).outerHTML || ( function(el)( var div = document.createElement('div'); div.appendChild(el.cloneNode(true)); var contents = div.innerHTML; div = null; return contents; ))(this(0))); )