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

Q796 How do I direct the output of the command window.open() into the same window?

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

Don't use window.open, use instead:

<SCRIPT LANGUAGE="JavaScript"><!--
function go() {
    location.href = 'http://www.irt.org/';
}

go();
//--></SCRIPT>

Feedback on 'Q796 How do I direct the output of the command window.open() into the same window?'

©2018 Martin Webb