JavaScript

Javascript - Opening New Tabs/Windows

Shou Arisaka
1 min read
Oct 20, 2025
  • Opening a mini window `window.open('https://example.com/','_blank','height=400,width=400,top=40,left=80',false);`
  • In a different tab of the same window `window.open('https://example.com/','_blank');`
  • In the same tab of the same window `window.open('https://example.com/','_parent');`

Reference: https://www.w3schools.com/jsref/met_win_open.asp

Share this article

Shou Arisaka Oct 20, 2025

๐Ÿ”— Copy Links