echo-url.github.io/script.js
2021-01-15 13:25:06 +03:00

10 lines
297 B
JavaScript

$(document).ready(function() {
let name = window.location.href.split("echo-url.github.io/")[1];
if (name === undefined || name == "") {
$("#maintext").text(decodeURI(window.location.href));
} else {
$("#maintext").text(decodeURI(name));
document.title = decodeURI(name);
}
});