I want to create a resizing ELEMENT which I can resize beyound the bottom limit of a DIV container. As long as I keep the mouse below (DIV container height-25px) the ELEMENT should keep increasing in size and the DIV should keep scrolling. In my case the ELEMENT should increase with +25px and the DIV should scroll down with 25px.
This works fine to set the resized element's height but as soon as I move the mouse again the elements continues to resize from where it was left.
Thank you guys/girls
What I have until now is:
this.$el.resizable({
handles: 's',
stop: function(event,obj){
if (self.data.scrollingId!=null){
clearTimeout(self.data.scrollingId);
self.data.scrollingId=null;
}
},
resize: function(event,obj){
var boundary=obj.element[0].parentNode.parentNode.parentNode.parentNode.parentNode; /*the div with the scrollbar*/