i have the following object and i am trying to convert it to json object as follows
var feeTransactionsArray=[];
$(\".editor #newPayTable
sorry every one its my silly mistake
it feeTransactionsArray.push(feeTransactionsArray);
should be feeTransactionsArray.push(feeTransactions);
It is not possible to stringify a circular structure in JSON. Lets see a single example:
var a = { a: undefined };
var b = { b: a };
a.a = b;
Then, we have an Object:
{ a: { b: { a: { b : { a ... infinite recursion
... this results into an error you described.