0

I'm working on a JSON Query language, project which is working fine in every browser except IE8.

I'm getting this Object doesn't support this action in IE8.

Object.defineProperty(FJQL, c, {
  get: function(){
    return (new Query(this, this.records))[c];
  }
});

Is there any alternative solution to this?

Thanks....

Fahid Mohammad
  • 910
  • 3
  • 17
  • 47

1 Answers1

1

IE8 does not support getter/setter functions on properties of non DOM objects.

So here you would need to use full getter functions

Please have a look through here.It gives you Answer.:)

Community
  • 1
  • 1
Avinash Babu
  • 6,171
  • 3
  • 21
  • 26