views:

90

answers:

1

Is there any way to know for events when move a window with "window.open"?.

It may be with javascript or using jQuery

Thank you.

+5  A: 

If you mean the physical browser window itself, no. Javascript runs sandboxed within the context of the window; you can't handle events outside of it.

Gurdas Nijor
ok, the only way I found so far is going to consult with a setTimeout the position of the window to see if he moved
andres descalzo