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.
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