Skip to content

Instantly share code, notes, and snippets.

@sunny
Created November 14, 2012 16:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunny/4073020 to your computer and use it in GitHub Desktop.
Save sunny/4073020 to your computer and use it in GitHub Desktop.
OuterHTML jQuery plugin with polyfill for Firefox < 11
# OuterHTML jQuery plugin with polyfill for Firefox < 11
# Example:
# $('ul').outerHTML() # => '<ul><li>Hi</li></ul>'
# $('ul').html() # => '<li>Hi</li>'
$.fn.outerHTML = ->
@[0].outerHTML || @clone().wrap('<b>').parent().html()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment