Documentation

onResizeEnd

occures when the user ends moving the 'resize' cursor (releases the mouse button)

void onResizeEnd(number pos){ ... };

Parameters

posnumberthe top (vertical resizing) or left (horizontal resizing) relative position of the cursor (relative to the parent container)

Example

some.attachEvent("onResizeEnd", function(pos){
    //... some code here ... 
});

Back to top