I have a simple Javascript object:
options[0] = {
title: 'Title 1',
items: ['a', 'b', 'c']
};
options[1] = {
title: 'Title 2',
items: ['1', '2', '3']
};
options[2] = {
title: 'Title 3',
items: ['x', 'y', 'z']
};
I need it recursively run the array on itself. The output for the example above should be 27 entries/rows:
a / 1 / x
a / 1 / y
a / 1 / z
a / 2 / x
a / 2 / y
a / 2 / z
a / 3 / x
a / 3 / y
a / 3 / z
b / 1 / x
b / 1 / y
b / 1 / z
b / 2 / x
b / 2 / y
b / 2 / z
b / 3 / x
b / 3 / y
b / 3 / z
c / 1 / x
c / 1 / y
c / 1 / z
c / 2 / x
c / 2 / y
c / 2 / z
c / 3 / x
c / 3 / y
c / 3 / z
Here's what I've tried so far:
fn_options(options);
function fn_options(options) {
$.each(options, function( index, option ) {
$.each(option.items, function( i, item ) {
console.log(item);
});
});
}
Basic fiddle here: http://jsfiddle.net/6D89F/1/