Skip to content

Instantly share code, notes, and snippets.

@uedatakeshi
Created May 8, 2009 02:07
Show Gist options
  • Save uedatakeshi/108558 to your computer and use it in GitHub Desktop.
Save uedatakeshi/108558 to your computer and use it in GitHub Desktop.
div to table replace
$(document).ready(function() {
$('div.input').each(function(){
var line = $(this).html();
line = line.replace(/label>/i, 'label></th><td>');
$(this).replaceWith('<tr><th>' + line +'</td></tr>');
});
$('tr').wrapAll(document.createElement("table"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment