My issue is that when I move the mouse, the mouse moves faster than the div underneath it. I am using jQuery UI 1.12.1 and jQuery 3.3.1 with default options.
Here is my HTML:
<div class="popup"></div>
And here is my jQuery code:
$(function()
{
$(".popup").draggable();
});
Do you have any thoughts on why this behavior might be occurring?