moves scripts to dedicated folder
This commit is contained in:
parent
ce606023e2
commit
a0d02e87c4
5 changed files with 4 additions and 3 deletions
31
scripts/siteTitle.js
Normal file
31
scripts/siteTitle.js
Normal file
|
@ -0,0 +1,31 @@
|
|||
//taken and reworked from here https://www.labnol.org/visitor-country-ip-address-200822
|
||||
//original code by Amit Agarwal
|
||||
//this is here due to the fact that I'm know by different names online and in the real world,
|
||||
//however it was removed because the ip2c server wasnt accurate enough
|
||||
|
||||
|
||||
const checkCountry = () => {
|
||||
return new Promise((resolve, reject) => {
|
||||
window
|
||||
.fetch("https://ip2c.org/self")
|
||||
.then((data) => data.text())
|
||||
.then((data) => {
|
||||
const [status, country] = String(data).split(";");
|
||||
if (status !== "1") {
|
||||
console.log("Unable to fetch country, defaulting to normal title");
|
||||
}
|
||||
|
||||
if (country != "UK"){
|
||||
document.title = "Rosia E Evans Portfolio"
|
||||
document.getElementById("siteTitle").innerHTML = "Rosia E Evans"
|
||||
document.getElementById("profileImage").src = "images/Profile3.png"
|
||||
}else{
|
||||
document.title = "Nye Evans Portfolio"
|
||||
document.getElementById("siteTitle").innerHTML = "Nye Evans"
|
||||
document.getElementById("profileImage").src = "images/Profile2.png"
|
||||
}
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
checkCountry();
|
Loading…
Add table
Add a link
Reference in a new issue