andres descalzo
andres descalzo

Reputation: 14967

Javascript: Detect when move a browser window

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.

Upvotes: 1

Views: 1578

Answers (1)

gn22
gn22

Reputation: 2086

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.

Upvotes: 5

Related Questions