Feedback on: irt.org FAQ Knowledge Base Q213
Comments:
The script should look like this nowadays:
<script language="JavaScript"></script>
<a href="http://www.somewhere.com/" onClick="showlink(this.href); return false">Go here</a>
Comments:
The script should look like this nowadays:
<script language="JavaScript"><!--
function linkpage(url) {
msgWindow = window.open(url,'targetname','width=300,height=200');
if (msgWindow.opener == null) msgWindow.opener = self;
}
//--></script>
<a href="page1.html" onClick="linkpage(this.href); return false">Show my links page</a>
And then in the links page:
<script language="JavaScript"></script>
<a href="http://www.somewhere.com/" onClick="showlink(this.href); return false">Go here</a>