Tutorials
Einige nützliche Hilfen und Code-Schnipsel, die ich immer wieder benötige und deshalb hier für alle sammle.
Zurück zur Übersicht
Javascript: window.location.origin im Internet Explorer benutzen
#Tutorials#Javascript
Da viele alte Internet Explorer das überaus nützliche Feature window.location.origin nicht können, welches einem die komplette URL mit allen Parametern zurückgibt, kann man sich folgendem kleinen Snippet/Polyfill behelfen:
if (!window.location.origin) {
window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
}
Ich hoffe das hilft euch weiter!
Kommentare
Hinterlasse einen Kommentar