A JavaScript Program To Move New Window To Specified Position Using HTML
A JavaScript Program To Move New Window To Specified Position Using HTML
| <html> | |
| <head> | |
| <script> | |
| function openWin() | |
| { | |
| myWindow=window.open('','','width=200,height=100'); | |
| myWindow.document.write("<p>This is 'myWindow'</p>"); | |
| } | |
| function moveWin() | |
| { | |
| myWindow.moveTo(300,0); | |
| myWindow.focus(); | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| <input type="button" value="Open 'myWindow'" onclick="openWin()" /> | |
| <br><br> | |
| <input type="button" value="Move 'myWindow'" onclick="moveWin()" /> | |
| </body> | |
| </html> | |
OutPut Of This Program::::
Comments