Skip to content

Instantly share code, notes, and snippets.

@suin
Created July 1, 2015 08:27
Show Gist options
  • Save suin/c445b097e9991e65078d to your computer and use it in GitHub Desktop.
Save suin/c445b097e9991e65078d to your computer and use it in GitHub Desktop.
$(function(){
$(".checklist").each(function(){
var checklist = $("<div>");
$(this).children("li").each(function(){
var contents = $(this).html();
var item = $("<label>");
$("<input>").attr("type", "checkbox").appendTo(item);
item.append("&nbsp;");
item.append($(this).html());
$("<div>").append(item).appendTo(checklist);
});
$(this).replaceWith(checklist);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment