var tags = ["abcd", "aaacd", "ade"];
I'm trying to loop through each string in the array and find its index. Again loop through characters in each string and find its index (eg.)
$.each(arr, function( index, value ) {
$.each(value.split(""), function( i, v ) {
alert( i + ": " + v );
});
});
value.split("")in second loop