Ich würde folgenden Code gerne async laufen lassen, hab dabei aber leider massive Probleme.
Ich hab den Code schon 100x umgeworfen (jetzt seit knapp 5 Stunden) und bekomm es einfach nicht hin.
geht einwandfrei
Ich hab den Code schon 100x umgeworfen (jetzt seit knapp 5 Stunden) und bekomm es einfach nicht hin.
Code:
jQuery.extend({
getValues: function(url) {
var result = null;
$j.ajax({
url: url,
type: 'get',
dataType: 'text',
async: false,
success: function(data) {
result = data;
}
});
return result;
}
});
setInterval(function() {
var notifica
notifica = $j.getValues('ajax.php?s=notifications');
if(notifica != "") {
var notifi = notifica.split('|');
notifi[5] = parseInt(notifi[5])*1000;
$j.notification(
{
title: notifi[3],
content: notifi[4],
timeout: notifi[5],
icon: notifi[0],
showTime: false
}
);
}
}, 3000);
Zuletzt bearbeitet: