Answers for "js go to url"

5

recuperar url javascript

var currentURL = $(location).attr('href'); //jQuery solution
var currentURL = window.location.href; // raw javascript
Posted by: Guest on July-23-2019
4

javascript got to url

window.location.href = "https://www.google.com"
Posted by: Guest on December-03-2020
9

javascript go to url

window.location = url;
Posted by: Guest on February-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language