KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* Das folgende JavaScript wird für alle Benutzer geladen. */ | /* Das folgende JavaScript wird für alle Benutzer geladen. */ | ||
var sp_country_codes = document.querySelectorAll('span.sp-country-code'); | var sp_country_codes = document.querySelectorAll('span.sp-country-code'); | ||
for (i = 0; i < sp_country_codes.length; i++) { | for (i = 0; i < sp_country_codes.length; i++) { | ||
sp_country_codes[i].innerHTML = navigator.language; | sp_country_codes[i].innerHTML = navigator.language; | ||
} | } | ||
Version vom 15. Mai 2019, 07:52 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
var sp_country_codes = document.querySelectorAll('span.sp-country-code');
for (i = 0; i < sp_country_codes.length; i++) {
sp_country_codes[i].innerHTML = navigator.language;
}