Guest User

Untitled

a guest
Oct 23rd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $("#dvFav" ).sortable({
  2. containment: "document",
  3. helper : 'clone',
  4. revert: 'invalid',
  5. update: function(event, ui) {
  6. var id = ui.item.attr('id');
  7. var index = ui.item.index() + 1;
  8. this.ChangeSortableOrder(id,index);
  9. }
  10. });
Add Comment
Please, Sign In to add comment