Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using location.replace to reload a page that uses GET variables for a success message.

My problem is, if the URL in the location.replace is exactly the same the page does not reload. I know that if I can use a condition and use location.reload() this will answer my question by I do not know how to use an IF statement on a location.replace, or any other way this could be done.

So when calling the location.replace('?success=1'); whilst ?success=1 is already in the URL the page does not reload.

Could anyone shed some light on this?

Thanks

share|improve this question
1  
In which browser are you experiencing the issue? The following works fine in Firefox 14/Chrome 20: location.replace(location.href); (via console). The only case where the page is not refreshed is when the URL contains a URL fragment (#). – Rob W Jul 25 '12 at 10:20
Hi, Yes I am also using a # in the URL to anchor the page – A Star Jul 25 '12 at 11:17

1 Answer

up vote 2 down vote accepted
 if(window.location.href.match(/[?]success=1/))
    window.location.reload();
    else
    window.location.replace('?success=1')
share|improve this answer
Thanks, this works perfectly! – A Star Jul 25 '12 at 11:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.