mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-07-18 16:51:59 -04:00
18 lines
286 B
HTML
Executable File
18 lines
286 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<p>This is the popup window. It only calls <code>window.open()</code></p>
|
|
<p>Click the button to open a popup.</p>
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
<script>
|
|
function myFunction() {
|
|
window.open("popup.html");
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|