$('#grdList tr td:nth-child(5)').each(function(i) {
if (i > 0) { //skip header
var sContent = $(this).text();
$
(this).attr("title", $(this).html());
if (sContent.length > 20) {
$
(this).text(sContent.substring(0,20) + '...');
}
}
});
grdList - table id