Created
March 27, 2011 07:11
-
-
Save jboesch/889005 to your computer and use it in GitHub Desktop.
$.fn.outerHTML method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Full example here: http://jsfiddle.net/jboesch26/3SKsL/1/ | |
*/ | |
$.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])); | |
} | |
console.log('native outerHTML: ' + $('#colors')[0].outerHTML); | |
console.log('jQuery cross-browser outerHTML: '+ $('#colors').outerHTML()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment