Domanda

body tag: <a href="javascript:gotoURL();">T&Cs</a>

head tag:

function gotoURL() {

        window.location = 'someurl.html';

    }

Not working, any idea?

È stato utile?

Soluzione

Modify the function:

function gotoURL() {
  window.location.href = "someurl.html";
}

Source: How can I make a redirect page in jQuery/JavaScript?

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top