to the end of the #response div, after the last tr, and it is not doing that.
success: function(data) {
var checkbx ='<input type="checkbox" class="checkall">';
var tblHdr = '<table class="table">';
tblHdr +="<tr> <th>Todo Item</th><th>Task Assigned To</th><th>Date Due</th></tr>";
var delRow = '<input type="button" class="btnDelete" onclick="deleteRow(this)">';
var tblEnd = "</\table>";
var rows= '';
$.each(data, function(idx,item) {
rows+=
'<tr><td>'+checkbx +item.todo +'<\/td><td>'+item.name+'<\/td><td>'+item.date + delRow + '<\/td><\/tr>';
$("#response").append(rows); ***
});//end each
$("#response").prepend(tblHdr); ****
$('#response tr:last').append(tblEnd); ***
}
//end success