Can I access, via js the current browser window's position? (its origin - not width & height)
It seems easy to set a window's position, but not to get that info.
Does the window class have x & y properties?
this gives me undefined:
Code:
<a href="" onclick="window.alert('x: ' + window.x + ' , y: ' + window.y );return false;">foo</a>