Guest User

Untitled

a guest
Jun 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. $(function($){
  3.     $(".drag").draggable({
  4.         drag: function(){
  5.             id = $(this).attr("id");
  6.             //console.log(id);
  7.         }
  8.     });
  9.     $(".drop").droppable({
  10.         drop: function() {
  11.             status = $(this).attr('id');
  12.             //console.log(status);
  13.             window.location = '{% url postit_change_status %}?id=' + id + '&status=' + status;  
  14.         }
  15.     });
  16. });
  17. </script>
Add Comment
Please, Sign In to add comment