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

Feedback on: irt.org FAQ Knowledge Base Q722, Monday June 25, 2007 at 05:20:37

You are here: irt.org | About | Feedback | 4737 [ previous next ]

Feedback on:
irt.org FAQ Knowledge Base Q722

Sent by
Lance on Monday June 25, 2007 at 05:20:37

Worth:

Length:

Technical:

Comments:
This piece of code works for me:

var keywindow=0;
function popkeyup(url){
if(keywindow){
if(!keywindow.closed){
keywindow.focus();
return false;
}
}
keywindow=window.open(url,'name','status=no, height=530, width=910, resizable=no');
if(keywindow.opener == null){
keywindow.opener = self;
}
keywindow.focus();
return false;
}



Then in the main body:
<a href="page.html" target="_blank" onclick="return popkeyup('page.html')"></a>





Other feedback on 'irt.org FAQ Knowledge Base Q722' - show all

©2018 Martin Webb