$(window).scroll(function(){
var sticky = $('table td'),
scroll = $(window).scrollTop();
if (scroll >= 100){
sticky.first().removeClass(fixed');
}
else {
sticky.first().addClass('fixed');
}
});
.fixed {
position: fixed;
bottom: 0;
}