Latest web development tutorials

Window moveTo () method

Window Object Reference Window object

Definition and Usage

moveTo () method to move the upper left corner of a window to the specified coordinates.

grammar

window.moveTo(x,y)


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support moveTo () method

Note: Specify themoveTo (0.0), in the upper left corner of the browser Opera.


Examples

Examples

The new window is moved to the top of the upper left corner of the screen:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function openWin(){
    myWindow=window.open('','','width=200,height=100');
    myWindow.document.write("<p>这是我的窗口</p>");
}
function moveWin(){
    myWindow.moveTo(0,0);
    myWindow.focus();
}
</script>
</head>
<body>

<input type="button" value="打开窗口" onclick="openWin()" />
<br><br>
<input type="button" value="移动窗口" onclick="moveWin()" />

</body>
</html>

try it"


Window Object Reference Window object