Advertisement
Guest User

Untitled

a guest
Nov 19th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(e){
  2.     $('.panel').on('click', '#like', function(e){
  3.         e.preventDefault();
  4.         var grade = $(this).data('grade');
  5.         var object_id = $(this).closest('.panel-heading').data('id');
  6.         alert('rate/' + object_id + '/' + grade);
  7.         $.ajax({url: 'rate/' + object_id + '/' + grade,
  8.                 request: 'GET',
  9.                 dataType: 'json',
  10.                 success: function(response){
  11.                     if (grade == '-'){$(this).closest('.panel-heading').find('.total-likes').text('lol')}
  12.                     else {$(this).closest('.panel-heading').find('.total-likes').text('kek')}
  13.                 },
  14.                 error: alert('W-T-F')
  15.         })
  16.     });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement