Ben Curtis wrote:
> 1- link replaces current document (no target or js new window)
> 2- link always opens new window (target="_blank" or js equivalent
> with unnamed window, e.g., window.open(this.href,'',winOptions);)

I agree, the opener getting focus each time the user clicks on a link create
problems with named windows (using target or JS).
But I think one can use the following to make sure named windows pop up on
top of the opener.

newWin=window.open(this.href,'zWin');if(window.focus){newWin.focus()}

Regards,
Thierry | www.TJKDesign.com

******************************************************
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
******************************************************

Reply via email to