I know this is a question much discussed but I can\'t figure out why it does not work for me.
This is my function:
function ShowComments(){
alert(\
If you are calling this function through a submit button. This may be the reason why the browser does not redirect. It will run the code in the function and then submit the page instead of redirect. In this case change the type tag of your button.
Make sure you're not sending a '#' at the end of your URL. In my case, that was preventing window.location.href from working.
In my case it is working as expected for all browsers after setting time interval.
setTimeout(function(){document.location.href = "myNextPage.html;"},100);
window.location.href wasn't working in Android. I cleared cache in Android Chrome and it works fine. Suggest trying this first before getting involved in various coding.