I am making an ajax request and in the success callback I want to refresh the page to reflect the changes. I am trying to pass parameters to the same page as refreshing this page.
The url looks something like this:
http://localhost:8080/details#component/12
, to which I add the parameter, as follows.
window.location.href += "?code=approved"; window.location.reload();
This works in Firefox, but not in IE, can you help here?
Chris.
source share