I have a divgable div. I want it to only be draggable in the size of my screen. But now anyone can drag it and make it go beyond.
My draggable div:
$("#stayaway").draggable()
I did a search on the Internet and found this line of code. It was supposed to prevent scrolling.
$("body").css("overflow", "hidden")
All he does is fade the scroll bar, but you can still drag the div from the window size.
source share