$.ajax({
url:"test.html",
cache: false,
success: function(html){
$("#results").append(html);
},
});
There is a trailing comma at the end of the last key value pair (success:function). I want to know that Does Internet Explorer trailing comma. Code is working fine in google chrome and Mozilla Firefox. But I am getting JavaScript error "Expected Identifier, String or Number" in some cases. I want to know is the trailing comma is the reason for this error.