in reply to Re: strange comma
in thread strange comma

I definitely understand. This is why I have taken to this style for JS (and SQL)-

$.ajax({ url: "test.html" ,context: document.body ,success: function(){ $(this).addClass("done"); } });

It's a bit weird at first but it makes yanks and pastes and edits easier and harder to mess up.