$(\"td[title^=cut]\").each(function()
{
var str = $(this).attr(\'title\');
var length = parseInt(str.split(\":\")[1]);
if($(this).text().length > length){
$(this).attr(\'title\',$(this).text());
$(this).text($(this).text().substring(0,length)+\'...\');
}
else
$(this).removeAttr(\'title\');
}) |