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