How To Open New Window New Now
Leo leaned in. He knew that the window.open() method was the gateway, but it needed precise instructions. The first argument was the URL—the destination.
"That’s the easy part," he whispered, typing the string. 'report.pdf'. That told the browser where to go. But the magic wasn't in the destination; it was in the vehicle.
Whether you are trying to boost your productivity or manage multiple tasks, knowing how to open a new window (rather than just a new tab) is a fundamental skill for any computer user. While "new tabs" keep everything in one window, a new window allows you to view sites side-by-side or organize different projects separately. Desktop Keyboard Shortcuts
The fastest way to open a new browser window is by using a keyboard shortcut. This works across almost all major browsers, including Chrome, Firefox, Edge, and Safari. Windows & Linux: Press Ctrl + N. macOS: Press Command (⌘) + N. Chromebook: Press Ctrl + N.
Is there a shortcut for "click to open link in new tab" on a laptop?
In the quiet town of Technopolis, was an aspiring writer drowning in a sea of browser tabs. His research for a historical thriller was getting tangled with his grocery list and cat video distractions. He realized he didn't need more tabs; he needed a fresh start. He needed a new window The Keyboard Quest
Leo first looked to his keyboard, the tool of his trade. He discovered that a simple ritual could summon a new window instantly: On his Windows PC , a quick press of made a brand-new Google Chrome window appear like magic. When he switched to his for editing, he used Command (⌘) + N to achieve the same result across almost any app, from Finder to Word The Secret Menus
Sometimes, Leo preferred a more deliberate approach. He explored the visual paths built into his favorite tools: The "Three Dots" Path : In Chrome or Edge, he’d click the three vertical dots in the top-right corner and select "New window" The Taskbar Trick : On his Windows taskbar, he found he could simply Shift + click middle-click an icon (like File Explorer or Chrome) to launch a second instance without ever touching the app's menu. The Mac File Menu : On macOS, he often just went to the top menu bar, clicked , and chose New Window The Shadow Realm (Incognito) how to open new window new
When Leo needed to research mysterious plot points without cluttering his search history, he summoned the "Shadow Realm"— Incognito Mode Chrome/Edge Ctrl + Shift + N (Windows) or ⌘ + Shift + N (Mac) to open a dark, private window. : Here, the ritual changed slightly to Ctrl + Shift + P (Windows) or ⌘ + Shift + P
By mastering these "portals," Leo cleared his digital workspace. With one window dedicated to history and another to his grocery list, he finally finished his thriller, all thanks to the power of a fresh view. organize these windows using features like Split Screen or Snap Layouts? How To Open A New Window In Chrome
This was the architecture. The windowFeatures string. This is where you ceased to be a coder and became an architect, dictating the laws of physics for this new digital space.
Leo typed the third argument, a string of comma-separated directives.
window.open('report.pdf', 'ReportWindow', 'width=500,height=600');
He held his breath and clicked the button.
Whoosh.
A separate, floating window appeared on top of his main browser. It was 500 pixels wide, 600 tall. But it still had the location bar, the bookmarks bar, and the toolbar. It looked like a full browser squeezed into a small box. Sarah wanted it clean. She wanted a "Kiosk mode." Leo leaned in
Leo gritted his teeth. He had to explicitly turn things off. By default, the browser assumes you want the chrome (the UI). To get rid of it, you have to set the features to 0 or no.
He refined his code:
const features = "width=500,height=600,left=100,top=100,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes";
const newWindow = window.open('report.pdf', 'ReportWindow', features);
He clicked again.
The result was beautiful. A sleek, chromeless window popped into existence at coordinates (100, 100) on his screen. It had scrollbars because the PDF was long, but no address bar to distract the user. It was a pure viewing portal.
window.open("https://example.com", "newWindowName", "width=800,height=600,toolbar=yes,location=yes");
✅ To guarantee a new window (not a tab), you must specify
widthandheightin the features string. He held his breath and clicked the button
Opening new windows remains a useful interaction when applied judiciously. Developers must balance user expectations, accessibility, security, and system resources. Following platform conventions, ensuring secure opener handling, and managing focus and announcements for assistive technologies yield the best user outcomes.
If you are a developer looking for the code to open a new window:
If you meant something else (like a specific software feature), please clarify the application name!
Want every "new tab" to actually be a "new window"? You can hack this in Chrome/Edge:
Warning: This changes the core browsing experience dramatically and is not recommended for daily use.
| Method | Steps |
|--------|-------|
| Keyboard shortcut | Press Ctrl + N |
| Browser menu | Click the 3 dots (Chrome/Edge) or 3 lines (Firefox) → New window |
| Right-click a link | Right-click any link → Open link in new window |