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 have a rather unique issue here. I developed an app on Facebook that doesn't use anything fancy, just HTML, CSS, and jQuery/jQuery UI. The problem is that when it loads for me in Chrome, the JS used for an image effect works, but when it loads for another person in their Chrome, it doesn't, although when they view in on their same machine in Safari it works fine.

I've double-checked that it's not an issue with the app itself, as testing it on everyone's machine by loading the code directly in the browser (outside of FB) is fine, but it's when it's loaded in the iFrame on FB for certain people that it doesn't work in Chrome.

In case that's confusing, here's what I mean:

Me: Works in Chrome both iFramed in FB and standalone

3 other people: Doesn't work in their Chrome on FB but does work standalone or on Safari.

The app isn't live, so I can't post a link to it, unfortunately, but I hope there is someone here who has some insight.

share|improve this question
I've had this happen before as well. Are you referencing any scripts or resources with a full URL? e.g. src="http://..."? If so then chances are you're accessing FB in secure mode (https). Your iframe is then accessing resources in http, causing a conflict. If this sounds accurate, then let me know and I'll promote my comment to an answer with further explanation. – Eli Gassert Jan 11 at 15:47
Not really. Scripts and assets are being referenced with relative paths. The only absolute paths I'm using are for calls externally, like loading the jQuery core or a Google Web Font. – Freddy Jan 11 at 15:55
Have you checked Chrome’s error console for those cases in which it “didn’t work” …? – CBroe Jan 11 at 16:00
Yep. For them it brings up Uncaught: TypeError: [Object Object] has no method 'draggable. It doesn't do that on mine, though. – Freddy Jan 11 at 16:08
I also just noticed that it works without the https:// but doesn't with http:// for everyone, including myself. – Freddy Jan 11 at 16:17
show 1 more comment

closed as too localized by Neolisk, casperOne Jan 15 at 20:28

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.