Skip to content

Instantly share code, notes, and snippets.

@pat-eason
Created June 24, 2014 18:19
Show Gist options
  • Save pat-eason/8b323082b5cf4c8f26d1 to your computer and use it in GitHub Desktop.
Save pat-eason/8b323082b5cf4c8f26d1 to your computer and use it in GitHub Desktop.
Convert <table> to <div>
$('table').replaceWith( $('table').html()
.replace(/<tbody/gi, "<div id='table'")
.replace(/<tr/gi, "<div")
.replace(/<\/tr>/gi, "</div>")
.replace(/<td/gi, "<span")
.replace(/<\/td>/gi, "</span>")
.replace(/<\/tbody/gi, "<\/div")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment