Method that gets a non last column td value and sets the title to that value



$(function() {
$('table tr td:not(:last-child)').mouseover(function() {
val = $(this).text().trim();
$(this).attr({title:val});
})
});