Skip to content

Instantly share code, notes, and snippets.

@Nebelung-Dev
Created August 19, 2022 18:27
Show Gist options
  • Save Nebelung-Dev/6fd70767687fa0063c7558042918baf6 to your computer and use it in GitHub Desktop.
Save Nebelung-Dev/6fd70767687fa0063c7558042918baf6 to your computer and use it in GitHub Desktop.
<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