fires before window resizing is started
win | object | the window instance |
boolean | "return true" - allows window resizing to be started, "return false" - otherwise |
w1.attachEvent("onBeforeResizeStart", function(win){
// your code here
return true; // allow window resizing to be started
});
added in version 4.2
Back to top