I have the following array in a JS file:
var arrayPriority = [
{
classPrio : "hoverLineTable",
color : "#99bfe6"
},
{
classPrio : "selectionLigneTable",
color : "#FEDA84"
},
{
classPrio : "jqGrCorrespondance",
color : "#CAFDA8"
}
];
It works well except in IE where I get this error on the line classPrio : "hoverLineTable"
:
Identicateur, string or number expected
What is the issue and how can I fix it?