Index: javascript/vhliblogging.js =================================================================== diff -u -r180 -r239 --- javascript/vhliblogging.js (.../vhliblogging.js) (revision 180) +++ javascript/vhliblogging.js (.../vhliblogging.js) (revision 239) @@ -7,6 +7,15 @@ width: "95%", height: "800" }); + + $(".checkbox").change(function() { + var id = "#" + this.id; + if (this.checked) { + $(".row" + "#" + this.id).addClass("highlight"); + } else { + $(".row" + "#" + this.id).removeClass("highlight"); + } + }); $(".detail").on("click", function () { var id = $(this).attr("id");