views:

75

answers:

2

I have a page with a ton of links (foo). If a user opens a link they get a new window (bar) via target="_BLANK" in the link. But if they go back to foo and click on another link instead of another new window (bar2), bar navigates to the new link.

This is only an issue in IE Fx opens a new tab. I need IE to do the same. Or open a new window.

Thanks!

+1  A: 

Name the targets _blank1, _blank2, etc.

Kev
+2  A: 

In Internet Explorer, the case of the target property matters. You should set your target to "_blank" instead of "_BLANK". If you want to try it out, go right ahead.

Chris Shouts