up vote 0 down vote favorite
share [g+] share [fb]

I create a popup using window.open in IE6. Created popup contains a link to other page, which i want to show in the same popup window, but after clicking on the link, the target page is displayed in another brand new popup, so i have 2 popups opened at that moment. How can i make a new page loaded in the same popup that holds a link to it?

p.s.

    a href="somepage.html" target="_self" 
didn't help

link|improve this question

50% accept rate
Do you have a base target="window_name" defined for links? That would cause that behaviour. – Residuum Aug 18 '09 at 14:42
feedback

1 Answer

a onclick="window.location.href = 'http://www.whatever.com/'"

is an option ?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.