Skip to content

Instantly share code, notes, and snippets.

@rumf
Last active October 12, 2015 10:17
Show Gist options
  • Save rumf/4011279 to your computer and use it in GitHub Desktop.
Save rumf/4011279 to your computer and use it in GitHub Desktop.
jQuery get outerhtml
if (typeof $this.outerHTML !== 'undefined') {
outerhtml = $this.outerHTML;
} else {
outerhtml = $this.wrap('<div>').parent().html();
$this.unwrap();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment