top.location.href doesn’t work in IE8 from my facebook application when i redirect people to another URL.
Anyone have any other solution to redirect a user to another URL (It’s need to redirect the URL outside the iframe, in this case the apps.facebook.com/application URL and not my domain URL)
Anyone have any solution?
Try to use
window.top.location = "NEW_URL"for the IE. Or, if your code is run fromiframe,parent.location = "NEW_URL"