I was looking for a way to resize and move the browser's window and I've found these:
self.resizeTo(w, h)
and self.moveTo(x, y)
- this seems to work perfectly, but only in Firefox and IE (tested with IE8, I don't know how it works in the previous versions).
How can I force the same behavior (resizing and moving) in Opera and Chrome? In these browsers the above solution does not work at all. Just nothing happens and nothing appears in the error console.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
In Opera and Chrome you can use window.resizeTo(w,h);
but it won't affect maximized tabs (so you can only move and resize popups).