$.each( {name: ["John","bbb"],lang: ["JS","tt"] }, function(i, n){ alert( "Item #" + i ); $.each(n,function(i,n){ alert(n); }); });