Skip to content

Instantly share code, notes, and snippets.

@claudiohilario
Created October 22, 2016 22:45
Show Gist options
  • Save claudiohilario/8a5bba406fbf8fdef18a011164249f36 to your computer and use it in GitHub Desktop.
Save claudiohilario/8a5bba406fbf8fdef18a011164249f36 to your computer and use it in GitHub Desktop.
//Opção 1
window.location.href = "http://www.exemplo.com";
//Opção 2
window.location.assign("http://www.exemplo.com");
//Opção 3
window.open("http://www.exemplo.com");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment