Hi Llaurick,
not sure if I understand you correct, but isn't array.join() what you search for?
var a = ['foo', 'bar', 'humpty', 'dumpty']; var s = a.join(','); // s is now 'foo,bar,humpty,dumpty' -- Marc Llaurick schrieb:
I would like to know if there is a function (or any other way) in JQuery (or a plugin) that would allow to create a concatenation of a collection of String. What I would like is to take a list or array of strings (text) and create something like a comma separated value string with it. Thanks for your help Llaurick.