I'm attempting to create a string out of a "value" list by iterating over it.
This is the key:
var blkstr = $.each(value, function(idx2,val2) {
var str = idx2 + ":" + val2;
alert(str);
return str;
}).get().join(", ");
The alert() method operates flawlessly and displays the correct value.
But for some reason, jQuery's.get() function fails to return the correct kind of object.
Why am I misusing this?