Created
August 19, 2022 18:27
-
-
Save Nebelung-Dev/6fd70767687fa0063c7558042918baf6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="icon"> | |
<input id="title" placeholder="Enter a title"> | |
<button onclick="setTitle()">Set</button> | |
<input id="icon" placeholder="Enter a favicon URL"> | |
<button onclick="setIcon()">Set</button> | |
<script> | |
function setTitle() { | |
var title = document.getElementById("title") | |
if (title.value) { | |
document.title = title.value | |
} | |
} | |
function setIcon() { | |
var icon = document.getElementById("icon") | |
if (icon.value) { | |
document.querySelector("link[rel='icon']").href = icon.value | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment