Here's the example of what i'm doing:
var size = new Array("S", "M", "L", "XL", "XXL");
var color = new Array("Red", "Blue", "Green", "White", "Black");
var options = new Array( size, color);
I'm doing a loop select form thingies which work good, but i want to fetch the Array child name, in this case - size or color. When i'm doing alert(options[0]) i get the whole elements of array, but for some specific case, i want to get only the array name, which is size/color like i've said already. Is there way to achieve that? Thanks
[]
andnew Array
stackoverflow.com/questions/931872/… – AntoJs Mar 28 '12 at 13:59