Short Version:
I've tried various methods for reloading a page with Javascript, and IE9 doesn't seem to want to reload the page when I use window.location.href = window.location.href;. This works in Chrome, Firefox and Safari.
Long Version: I'm having some trouble with a Facebook App page. There is some voting that happens on the page, and I'm using people's Facebook ID to track votes (only one per account is allowed). The page is in an iframe on Facebook (this is how they do apps).
So, in order for Facebook to allow my page to view a user's id, they have to authorize the app. After the user authorizes the app, the page needs to reload so that my server can get info from Facebook about the current user.
I originally had used window.location.reload();, but that caused some prompts to come up about resubmitting post data. This happens because Facebook posts a bunch of info to my page whenever anybody loads it. This is just something Facebook does, and I don't think I have any control over it. Having this prompt come up is not really an option for me. And since it's something that Facebook always posts, I can't do a post/redirect/get kind of thing.
So, I moved on and tried window.location.href = window.location.href;, which works perfectly in Chrome, Firefox and Safari, but has issues in IE9. It looks like the page reloads (it flickers), but none of the information comes up on the page and clicking on a vote button asks for authentication again. If I reload the page manually at this point, everything loads how it's supposed to and the user can vote as intended. I also tried adding a random string to the end of window.location.href to make sure it wasn't being cached. This didn't help.
I also can't reload the entire page, rather than just the iframe, because of cross domain issues since I'm in an iframe on Facebook.
I'm not entirely sure what the problem is, and haven't been able to find a way to phrase the question properly so that search will guide me to someone else with the same problem.
