I'm getting that error being reported in firebug:
data = data + "&network=" + rowdata.network + "&10xx=" + rowdata.10xx;
can anyone help me how to fix this error.
I'm getting that error being reported in firebug:
data = data + "&network=" + rowdata.network + "&10xx=" + rowdata.10xx;
can anyone help me how to fix this error.
rowdata.10xx
is invalid JS. Dot notation access of properties uses identifiers and identifiers cannot start with a number. Either use a different property name:
rowdata.x10xx
or use square bracket notation, which lets you use strings instead of identifiers:
rowdata['10xx']