Guest User

Untitled

a guest
Feb 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(".accioform").draggable({
  2. drag: function(evt, ui){
  3. dragged = {
  4. identificador: $(this).find(".idef").val(),
  5. img: $(this).find(".imgf").attr('src'),
  6. son: $(this).find(".sound").attr('src')
  7. };
  8. },
  9. helper: "clone",
  10. revert: true,
  11. revertDuration: 0
  12. });
  13. }
Add Comment
Please, Sign In to add comment