1

i've found a bug in jQueryUI draggable.... check it out on their demo page here

if you drag the object down far enough so that the page scrolls downwards, the draggable object loses it's position relative to the cursor.

any ideas what's causing the bug, and how to remedy it?

thanks :)

significance
  • 4,797
  • 8
  • 38
  • 57

1 Answers1

0

You need to specify a scroll option :

$( "#draggable" ).draggable({ scroll: true });
$( "#draggable2" ).draggable({ scroll: true, scrollSensitivity: 100 });
$( "#draggable3" ).draggable({ scroll: true, scrollSpeed: 100 });

check: This Link

AhmadAssaf
  • 3,556
  • 5
  • 31
  • 42