Window moveTo() Method

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );



Window moveTo() Method


❮ Window Object



Example


Open a new window, and move the new window to the top left corner of the screen:



function openWin()


  myWindow = window.open('', '', 'width=200, height=100');    // Opens a new window

  myWindow.document.write("<p>This is 'myWindow'</p>");       // Some text in the new window



function moveWin()


  myWindow.moveTo(500, 100);                                  // Moves the new window   

  myWindow.focus();                                           // Sets focus to the new window

Try it Yourself »

More "Try it Yourself" examples below.



Definition and Usage


The moveTo() method moves a window's left and top edge to the specified coordinates.


Related methods:



  • moveBy() - Moves a window relative to its current position


  • resizeBy() - Resizes the window by the specified pixels


  • resizeTo() - Resizes the window to the specified width and height


Browser Support














Method
moveTo() Yes Yes Yes Yes Yes

Note: Specifying moveTo(0, 0) in Opera, results in moving the window to
the top left corner of the browser, not the screen.








googletag.cmd.push(function() googletag.display('div-gpt-ad-1493883843099-0'); );





Syntax



window.moveTo(x, y)

Parameter Values











Parameter Type Description
x Number Required. A positive or negative number that specifies the horizontal coordinate to be moved to
y Number Required. A positive or negative number specifies the vertical coordinate to be moved to

Technical Details




Return Value: No return value

More Examples



Example


Using moveBy() together with moveTo():



function moveWinTo()
  myWindow.moveTo(150, 150);
  myWindow.focus();


function moveWinBy()
  myWindow.moveBy(75, 50);

  myWindow.focus();

Try it Yourself »



❮ Window Object

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Malaysia to Papua New Guinea by motorcycle?

PHP code is not being executed, instead code shows on the page