Duration: 16 minutes
Summary: In this video, we will explore the power of the window object. To do so, we create three links: one that creates a new window object, one that closes the window, and a one that changes the size and location of the window. To create a new window, we use window.open(). This function is very powerful because it takes a list of properties for the window (width, height, resizable, scrollbars, location). Once the window object is created, we can call some functions such as: blur.... The link that closes the window is simple because all what it needs is calling the close() function. Finally, the rearranging the window is a matter of calling: moveTo() and resizeTo().
Methodology of the development of example: coding based on international standards and sharing application in client / server.Technology Used: JavaScript – Core language Concepts
Keywords: JavaScript, HTML, function, window, open, close, blur, moveTo, focus, resizeTo.