I'm not sure why the each iteration is not alerting Table Two value.
$(document).ready(function () {
Test1([{id:"one",tbl:"Table One"},{id:"two",tbl:"Table Two"}]);
});
function Test1(arrObj) {
$.each(arrObj,function(idx){
var thing = $(this);
alert(thing[idx].tbl); //Not getting to Table Two
});
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Uncaught TypeError: Cannot read property 'tbl' of undefined