これが可能かどうかはわかりませんが、文字列と同じ名前のオブジェクトを選択して .each ループで使用する方法はありますか?
var test = "myobj";
var myobj = {"1" : "2", "2" : "3"};
function testing(test){
// If i do a console.log on the variale "test":
console.log(test); // will show the string: "myobj"
typeof(test); // is string
// somehow select the object with the name myobj, and maybe iterate through it?
jQuery.each(myobj, function(key, val){
alert(val); // right now this will alert the actual letters: m y o b j
});
}