﻿$(document).ready(function () {
    var tables = $('table');
    tables.each(function () {
        $(this).attr('cellpadding', '0');
        $(this).attr('cellspacing', '0');

        $(this).find("tr:last td").css('border-bottom', '0');
    });

    var tableRows = $('table tr');
    tableRows.each(function () {
        console.log($(this));
        $(this).find("td:last").css('border-right', '0');
        $(this).find("th:last").css('border-right', '0');
    });
});
