title | description | date | categories | |
---|---|---|---|---|
Redirector |
A simple redirector to a URL entered by the user |
2023-01-01 |
|
Then click the link to go to the website.
<script> function func() { var u = document.getElementById("url").value; if (u.indexOf("http://") == -1 && u.indexOf("https://") == -1) { u = "http://" + u; } var link = document.getElementById("link"); link.href = u; console.log(u); } </script> go click here to go to your website