About
Explore
Events & Classes
Support Us
Join
Sign In
usertoy
View Project Page
Run
Fullscreen
usertoy's code project 13
HTML
CSS
JS
<!DOCTYPE html> <html> <body> <p>Open a new window, and resize the width and height to 250px:</p> <p><b>Tip:</b> Press the "Resize window" multiple times (the window will increase 250px for each press).</p> <button onclick="openWin()">Create window</button> <button onclick="resizeWin()">Resize window</button> </body> </html>
body { background: #bbeeaa; } p { color: blue; font-family: lucida console; font-weight: bolder; font-size: 32px; } button { background-color: yellow; color: brown; border: 5px solid pink; border-radius: 33px; }
var myWindow; function openWin() { myWindow = window.open("https://justcodaborate.com/messaging-2#right-header", "", "width=100, height=100"); } function resizeWin() { myWindow.resizeBy(250, 250); myWindow.focus(); }