Reputation: 69
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
Reputation: 1017
You would want to use location.href to change the url, ie location.href = 'http://localhost:8080'
Upvotes: 1