ВнутрішнійHTML () є рідним і повертає вміст DOM-вузла (наприклад, I live inside a div.
externalHTML () не є, що включав би поточний DOM-вузол (наприклад I live inside a div.
). Це версія jQuery, що підтримує ланцюжок).
$.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))); )