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....