Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $.ajax({
- type: "POST",
- url: base_url + "/finance/payment-history",
- data: dataString,
- success: function(response) {
- var json_obj = $.parseJSON(response);
- var output = "<ul>";
- for (i=0; i < json_obj.payments.length; i++)
- {
- var payment = json_obj.payments[i];
- var date = moment(payment.pdate).format('Do MMM YYYY');
- output += "<li>£" + payment.amount + " - " + date + " (" + payment.club + ")</li>";
- }
- output += "</ul>";
- $('.history-section').html(output);
- },
- dataType: "html"
- });
Advertisement
Add Comment
Please, Sign In to add comment