Search w3schools.com:

SHARE THIS PAGE

Window resizeBy() Method

Window Object Reference Window Object

Definition and Usage

The resizeBy() method resizes a window by the specified amount.

Note: This method moves the bottom right corner of the window by the specified number of pixels defined. The top left corner will not be moved (it stays in its original coordinates).

Syntax

resizeBy(width,height)

Parameter Description
width Required. A positive or a negative number that specifies how many pixels to resize the width by
height Required. A positive or a negative number that specifies how many pixels to resize the height by


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The resizeBy() method is supported in all major browsers, except Opera and Chrome.


Example

Example

Resize the window with 100px each way:

<html>
<head>
<script>
function resizeWindow()
  {
  window.resizeBy(100,100)
  }
</script>
</head>
<body>

<input type="button" onclick="resizeWindow()" value="Resize window">

</body>
</html>

Try it yourself »


Window Object Reference Window Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]