I have a simple ajax request function and theres some syntax error im missing. Just need a second pair of eyes.. thanks
function GetPaginationPage(array) {
$.ajax({
type: "POST",
url: "includes/get_pagination_page.php",
data: array,
success: function(data){ function (data) {
$('.contestants_list').append(data);
}};
});
};
function(data){...}