Guest User

Untitled

a guest
Jul 12th, 2016
19,550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   <script>
  2.   $(function() {
  3.     $( ".sortable" ).sortable({
  4.       connectWith: ".connectedSortable",
  5.       receive: function( event, ui ) {
  6.         $(this).css({"background-color":"blue"});
  7.       }
  8.     }).disableSelection();
  9.   });
  10.   </script>
Advertisement
Add Comment
Please, Sign In to add comment