I\'m trying to iterate over a \"value\" list and convert it into a string. Here is the code:
var blkstr = $.each(value, function(idx2,val2) {
I needed an array to became a String rappresentation of an array I mean I needed that
var a = ['a','b','c']; //became a "real" array string-like to pass on query params so was easy to do: JSON.stringify(a); //-->"['a','b','c']"
maybe someone need it :)