Skip to content

Instantly share code, notes, and snippets.

@GingerBear
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GingerBear/fcec254d414d7134dfe4 to your computer and use it in GitHub Desktop.
Save GingerBear/fcec254d414d7134dfe4 to your computer and use it in GitHub Desktop.
convert table tag to div
function tableToDiv(html) {
return html.replace(/<(\/?)(table|thead|tbody|tfoot|th|td|tr)/gi, '<$1div data-original-tag="$2"');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment