HTML DOM Window moveTo() Method (original) (raw)
Last Updated : 15 Jun, 2023
The moveTo() method is used in the window to moves the window from the left and top coordinates.
Syntax:
window.moveTo(x, y)
Parameter:
- x: A positive or negative number that specifies the horizontal coordinate to be moved to
- y: A positive or negative number specifies the vertical coordinate to be moved to
Example: Move the window.
html `
Window moveTo() MethodGeeks for Geeks
Create Move <script>
var myWindow;
function openWin() {
myWindow =
window.open("",
"myWindow",
"width=200",
"height=100");
myWindow.document.write(
"This is 'myWindow'
"); } function moveWin() { myWindow.moveTo(500, 100); myWindow.focus(); }`
Output:
Initial:

New window:

Move window:

Supported Browsers: The browser supported by Window moveTo() Method are listed below:
- Google Chrome 1
- Mozilla Firefox 1
- Internet Explorer 4
- Opera 12.1
- Safari 1
- Edge 12