Created
November 12, 2014 09:25
-
-
Save duzun/9e98c9a250009fddb61d to your computer and use it in GitHub Desktop.
Gets outerHTML of an element
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
/** | |
* Gets outerHTML of an element | |
*/ | |
;(function (global) { | |
var $ = global.jQuery || global.Zepto; | |
$.fn.outerHTML = function fouterHTML() { | |
$t = $(this); | |
if ('outerHTML' in $t[0]) { | |
return $t[0].outerHTML; | |
} | |
else { | |
var content = $t.wrap('<div></div>').parent().html(); | |
$t.unwrap(); | |
return content; | |
} | |
} ; | |
})(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment