Stop div from being dragged obove 300px top without useing contain.
so far i made it flicker and get back.. or just get back to 300px after drop
how can i limit it in a proper way? i need it to DO NOT Drag beyond 300px top while drag, and not like "contain" i got only top limit... the rest is limitless. please help.
$(function() {
$( "#draggable" ).draggable({
drag: function () {
if($(this).offset().top<300)
$(this).css("top", 300);
},
stop: function () {
if($(this).offset().top<300)
$(this).css("top", 300);
},
});
});