Reputation: 11
I'm putting a simple href link inside my html page: http://search.mastertour.co.il/?mode=page&page=12077&lang=rus the link can be found at the bottom of the page near the cleopatra head image. Now, while the page is in a subdomain, the link referes to a TLD but the page cannot redirect to the link. It shows a "half-baked" page while trying to access the link directly (not through the html link) shows the page fine.
Any idea???
Upvotes: 0
Views: 208
Reputation: 25053
Get rid of the window.open()
, this is all you need:
<a href="http://www.mastertour.co.il/rus/tours/egypt/" target="_new">здесь</a>
Upvotes: 1
Reputation: 2871
I'm guessing it has something to do with the onclick
attribute you have attached. Do you really need it? Also, i'm guessing you're using it to force that link to open in a new tab/window - you really shouldn't, as the user should have that kind of control.
Upvotes: 0