Is there any window management library in JavaScript?

I have many browser windows open from JavaScript. And I want to manage them - the place of the cascade, tiles and change their size at the same time. Are there any libraries that can help me?

+4
source share
2 answers

I really don't know if JavaScript is allowed to access anything other than the window in which it is running. Just think of different browser implementations, for example. when the browser always opens a new tab instead of a window (you cannot resize and place them) or opens it as a child window inside the application (as Opera does), etc. Just because of this, I don’t think it is possible in the proper order.

If you really need a more sophisticated JavaScript window manager, you can take a look at ExtJS . It usually gives you movement control throughout the user interface.

+1
source

In the past, I would simply use the DOM standards documentation to figure out what I can do as a starting place. www.w3.org/TR/Window/

If you are looking for a simple library that you can use that will work well in browsers, I would look at jquery. http://jqueryui.com/

+1
source

All Articles