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.

The command document.location.href="www.google.com" is not working in google chrome browser. The same is working in IE9. I have put this inside a if loop condition. Any suggestions?

share|improve this question

2 Answers

You need to add the protocol:

document.location.href="http://www.google.com";
share|improve this answer
This is working only in IE9, not in google chrome. – Ashwin Nov 5 '12 at 5:36
up vote 0 down vote accepted

Got the solution - thanks to denmark dinga - similar question - document.location not working in IE9?

window.event.returnValue = false;

Have this before document.location.href

share|improve this answer

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.