JavaScriptでブラウザのウィンドウを開く方法

js
let windObj = window.open(
    url,
    xxx,
    "width=xxx,height=xxx,resizable=yes,scrollbars=yes,menubar=no,toolbar=no"
);
js
windowObj.location.href = url;
windowObj.focus(); // Option

関連記事