Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q214 How do I stop a popup window from opening?

You are here: irt.org | FAQ | JavaScript | Window | Q214 [ previous next ]

Define your own open() function:

<html>
<head>
<script language="JavaScript"><!--
function open() {
    alert('Hello World');
}
//--></script>
</head>
<body>
...
</body>
</html>

Feedback on 'Q214 How do I stop a popup window from opening?'

©2018 Martin Webb