Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am seeing strange situation here. This was meant for including in Iframe. Every links in it is set for target=_top with Javascript. It was working fine but not now. I checked in FF 11.

There are 3 columns (Yahoo! Auto, Services Yahoo! and Tendances Du Web). In 1st column, all links work (use target=_top) except "Neuf et occasion". On other columns, no link is respecting target="_top". I guess it is JavaScript onclick event which is causing problem, but How to be sure of it! There are so many lines of code in JavaScript that is in minified form.

The above frame is used here inside Iframe. So, you can check the working code there.

share|improve this question

1 Answer

up vote 0 down vote accepted

Inspecting the console reveals that your page has several JavaScript errors of this form:

Unsafe JavaScript attempt to access frame with URL http://auto.yahoo.fr/ from frame with URL http://fr.cars.yahoo.com/footer/. Domains, protocols and ports must match.

The reason for this error is because it is considered a security problem to have frames accessing different domains. 'Accueil', 'News' and 'Essais' work because they point to a relative path (same domain), but 'Neuf et occasion' points to a different domain.

A solution would be to rewrite your footer to not use an iframe. This way you won't have any more cross-domain issues with the links. If you can't remove the iframe, you could investigate using easyXDM to communicate between the frames.

share|improve this answer
Yes, I cannot remove Iframe. I will check for easyXDM as you have suggested and post comment here soon. – Satya Prakash Apr 21 '12 at 4:51
Do you have example of easyXDM only for Iframe target thing to work? I am asking as I saw few example for sending message between provider and consumer. For me, I just need to make link load on _top. – Satya Prakash May 22 '12 at 13:40
Can crossdomain.xml help me here? I can possibly module the file at far.cars.yahoo.com/. – Satya Prakash May 22 '12 at 13:42
I saw that it was due to tracker changing links in background and adding click event to change there as well. Frame target=_top is working fine without that. – Satya Prakash Jul 19 '12 at 14:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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