10 lines
212 B
HTML
10 lines
212 B
HTML
<html>
|
|
<body>
|
|
<a href="blank.html" target="_blank">noopener example</a>
|
|
</body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
window.onload = () => {
|
|
document.querySelector('a').click()
|
|
}
|
|
</script>
|
|
</html>
|