You need to sign in to do that
Don't have an account?

Javascript Reload
I've got a custom link that is opening a new window and displaying a page from an external website. When my users are done I would like to close the window and refresh the SalesForce window so that it reloads showing the users the new data.
I've tried the normal Javascript calls, but they don't work, mostlikely because of the cross domain scripting security.
Does anyone know of a work around for this?
Thanks,
You could try:
window.opener.location.href = "/" + caseId;
it works in Chrome and Firefox, but not working in IE8. I am also looking for a solution for IE.