Moin aller Leser,
ich habe ein Problem mit meinem Jquery Get. Ich habe das sonst immer so als Code benutzt und sonst hat es auch funktioniert, ich verstehe nur nicht warum das nicht mehr funktioniert aufeinmal.
Ich möchte via $.get(Link/zur/Datei...) eine $_COOKIE Variable auslesen die mir von der Function returnt wird.
Code
$(document).ready(function(){
var lang;
$.get(window.location.protocol + "//" + window.location.host + "/actions/getLang", function(data){
lang = data;
return lang;
});
alert(lang);
});
Alles anzeigen
Wenn ich das alert(lang); vor dem return lang; schreibe, funktionierts auch (ist ja auch logisch) aber so wie es jetzt ist, wird als alert ein "undefined" ausgegeben.
Wie gesagt, bei data steht das richtige drinne, es hat auch sonst immer funktioniert. Jetzt funktioniert es jedenfalls nicht mehr.
MfG
XonarZ