W moim skrypcie MooTools uruchamiam wywołanie AJAX, działa to dobrze w przeglądarce Firefox, ale w Chrome pojawia się Uncaught SyntaxError: Unexpected token :
błąd, nie mogę ustalić przyczyny. Komentowanie kodu w celu ustalenia, gdzie znajduje się zły kod, nic nie daje, myślę, że może to być problem ze zwróconym JSON. Sprawdzam w konsoli, czy JSON zwrócił:
{"votes":47,"totalvotes":90}
Nie widzę z tym żadnych problemów, dlaczego miałby wystąpić ten błąd?
vote.each(function(e){
e.set('send', {
onRequest : function(){
spinner.show();
},
onComplete : function(){
spinner.hide();
},
onSuccess : function(resp){
var j = JSON.decode(resp);
if (!j) return false;
var restaurant = e.getParent('.restaurant');
restaurant.getElements('.votes')[0].set('html', j.votes + " vote(s)");
$$('#restaurants .restaurant').pop().set('html', "Total Votes: " + j.totalvotes);
buildRestaurantGraphs();
}
});
e.addEvent('submit', function(e){
e.stop();
this.send();
});
});