MooToolsスクリプトでAJAX呼び出しを実行していますが、これはFirefoxでは問題なく動作しますが、ChromeではUncaught SyntaxError: Unexpected token :
エラーが発生し、理由を特定できません。不正なコードの場所を特定するためにコードをコメント化しても何も得られないので、返されるJSONに問題があるのではないかと考えています。コンソールで確認すると、返されたJSONは次のとおりです。
{"votes":47,"totalvotes":90}
問題はありません。なぜこのエラーが発生するのですか?
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();
});
});