JSON string:
'["Colour","Audio","Effect"]'
I'm having an issue iterating through this, albeit it's a simple solution. I have tried:
for (var o in obj) { } // iterates through each individual character of the json object
for (var i = 0; i < obj.length; i++) { } // same as above
$.each(obj, function(i, v) { }); // same as above
I'm not seeing something here. So hopefully someone out there can figure out what's wrong.