Files
pathduck.github.io/test/window-open-crash/index.html
T
2023-04-26 10:07:01 +02:00

17 lines
247 B
HTML
Executable File

<!DOCTYPE html>
<html>
<body>
<p>Click the button to open a popup.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
window.open("popup.html", "_blank", "width=600, height=500");
}
</script>
</body>
</html>