i been reading for hours trying to make this work but i dont have much knowledge to do it.
I have this js code:
var username=$(this).attr("username");
It pull a list of users f.e (admin, test1, test2, test3)
and i needs to split it into another var like this:
var members = [
['admin'],
['test1'],
['test2'],
['test3'],
];
I tried a lot of codes but i cant make it work, thanks in advance!