views:

53

answers:

2

Very strange, I have a list of products. When a user clicks on an the image it opens up a new IE window.

Firefox doesn't do this.

What could be the reason for this?

the urls are:

http://website.example.com

and clicking on the image goes to (which is hosted on another server):

http://store.website.example.com

Could this be some internal security measure or ?

Note: I don't have target=_blank and I even tried addign target=_self but no change.

Update It turns out some javascript function was searching for certain urls and modifying its behaviour! thanks.

A: 
<a href="http://store.website.example.com" target="_blank">
BlueRaja - Danny Pflughoeft
+3  A: 

A new window is generally prompted by a target attribute on the A tag:

<a href="#" target="_blank">linktext</a>

FF can supress/override this behaviour in it's preferences.

graphicdivine