Delete window.location.href JavaScript

-1

I am not a programmer, but there is some way to delete window.location.href or change it for another url that you want.

var URLactual = window.location.href;
    
asked by Marlon Camacho Polo 03.01.2018 в 07:10
source

1 answer

2

What do you want to achieve because the most logical thing is to change this?

var URLactual = window.location.href;

for this:

var URLactual = "http://www.tupagina.com/";

If that is your question

    
answered by 03.01.2018 в 07:19