My 10th grade English teacher was right, punctuation is important, especially when writing Ajax applications. In Internet Explorer, having a trailing comma in an object declaration fails, grammatically this isn’t correct, but all browsers except Internet Explorer just ignore the problem. Though this problem isn’t new, writing any amount of Ajax, will more than likely cause you to run into this issue, either by a Cut and Paste error or Just forgetting not to do this.
The following code snippet is an example of code that will produce this error:
{
description: “This will fail in IE”,
why:”I have no idea”,
}
