Liam_Rab33
Liam_Rab33

Reputation: 69

Clear url in adressbar with location.hash

How do i use location.hash to change url from:

localhost:8080/login.php to localhost:8080

i have tried to to this body onload="location.hash = '1'

Upvotes: 0

Views: 54

Answers (1)

Lbatson
Lbatson

Reputation: 1017

You would want to use location.href to change the url, ie location.href = 'http://localhost:8080'

Upvotes: 1

Related Questions