Код: Выделить всё
var a = document.createElement('a');
a.href = "http://www.test.com";
document.body.appendChild(a);
a.click();
Подробнее здесь: https://stackoverflow.com/questions/796 ... javascript
Код: Выделить всё
var a = document.createElement('a');
a.href = "http://www.test.com";
document.body.appendChild(a);
a.click();