jsDelivr is not updating

240 Views Asked by At

I know same question exists in stack overflow. However they are not properly answered.

I uploaded a js from Github to jsDelivr. The one in Github is updated but jsDelivr is not.

Example:

Github

if (event.key === "Enter") {
  let nn = document.getElementById("inputcountryname").value;
  localStorage.setItem("localcountry", nn);
  alert("Your country's name is: " + nn);
  hide("entercountryname");
}

jsDelivr

if (event.key === "Enter") {
  let nn = document.getElementById("inputcountryname").value;
  localStorage.setItem("localcountry", nn);
  alert("Your country's name is: " + nn);
}
0

There are 0 best solutions below