We can move the window to a fixed location by using moveTo() function, here is the code.
window.moveTo(X,Y);
We have seen how moveBy() we used and moved the child window to different locations. Same way we will try moveTo function and move the window to a different location.
Here is the code.
<!doctype html public "-//w3c//dtd html 3.2//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Demo of moveto to move a window</title>q
<script language=javascript>
function to_close(){
tm.close();
}
function to_open(){
tm=window.open("moveby-child.htm","Ratting","width=250,height=150,0,top=200,status=0,");
}
function to_moveTo(){ tm.moveTo(300,300);
tm.focus(); // Keeping the focus on small window
}