Use .get() or .eq() to get single elements from the collection of dom objects.
var tst = this.tbl_list.find('col');
alert('length = '+ tst.length);
for(i=0; i< tst.length ; i++ ){
alert(tst.get(i).tagName);
//or tst.eq(i)
}
another way is .each() iterate through dom elements.
.each() method is designed to make DOM looping constructs concise .
e.g.
$('li').each(function(index) {
alert(index + ': ' + $(this).text());
});
for your solution this should be like this:
tst.each(function() {
alert(this.tagName)
});