Ajax request problem: error 80020101

You can also get this error if you’re doing an AJAX call from jQuery and you pass an extra comma on the end of the array, like so: $.post(‘http://example.com/example1/’,{ field1:sField1, field2:sField2, field3:sField3, field4:sField4, field5:sField5, },function(sData){ if (console) { console.log(sData); } }); See that comma after the sField5? That’s the syntax error. No other browser will … Read more