Javascript global variabel
Kan nogen svare mig på, hvorfor følgende virker fint:var country;
geoip2.cityISPOrg(function (response) {
country = response.country.names.en;
alert(country)
}, null, { w3cGeolocationDisabled: true });
Men flytter jeg alerten udenfor, sådan:
var country;
geoip2.cityISPOrg(function (response) {
country = response.country.names.en;
}, null, { w3cGeolocationDisabled: true });
alert(country)
Så virker det ikke. Jeg skal bruge country variablen i en anden function.