CORE-POS/IS4C

View on GitHub
fannie/modules/plugins2.0/StaffArPayrollDeduction/js/dates.js

Summary

Maintainability
A
2 hrs
Test Coverage
function addDate()
{
    var newdate = $('#newDate').val();
    $.ajax({
        url: 'StaffArDatesPage.php',
        type: 'get',
        data: 'add='+newdate,
        success: function(resp) {
            $('#mainDisplayDiv').html(resp);
        }
    });
}

function removeDate(id)
{
    $.ajax({
        url: 'StaffArDatesPage.php',
        type: 'get',
        data: 'delete='+id,
        success: function(resp) {
            $('#mainDisplayDiv').html(resp);
        }
    });
}