Reputation: 8531
A long time ago, I was reading that there is a way to go to a specific URL via the Chrome Console. I am wondering if anyone knows the command that would do so?
Upvotes: 23
Views: 49589
Reputation: 773
Try this:
this.document.location = "http://stackoverflow.com/"
Upvotes: 52