Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function () {
  2.     $(document).on('click', '.checkbox', function(){
  3.         $(this).parent().addClass('completed');
  4.         $(this).attr('disabled', true);
  5.  
  6.         uid = $(this).attr('data-uid');
  7.         $.get("/api/complete/" + uid);
  8.     });
  9.     $(document).on('click', '.remove', function(){
  10.       $(this).parent().remove();
  11.     });
  12.  
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement