Сообщение от javascrip
|
но мне надо при клике чтобы открывалась ссылка например site.ru.. подскажите плз
|
<a href="https://example.com/" target="_blank">Открыть окно</a>
<button onclick="
var width = 640;
var height = 480;
open(`https://example.com/`, ``, `
width=${width},
height=${height},
top=${(screen.height - height) / 2},
left=${(screen.width - width) / 2}
`);
">Открыть окно</button>