ATTENTION: Due to high demand, there are a limited amount of supplements in stock to
today .
$.get("https://ipinfo.io/json", function (response) { $("#address").html(response.city);
}, "jsonp");
const date = () => {
let data = new Date(),
dia = data.getDate().toString().padStart(2, '0'),
mes = (data.getMonth()+1).toString().padStart(2, '0'),
ano = data.getFullYear();
return `${dia}/${mes}/${ano}`;
}
$("#daynow").html(date());