var filter = $("#filter"); // < -- это Input
filter.keyup(function(e)
{
$('#main_table td:nth-child(1)').each(function()
{
if(filter.val() != $(this).text().substr(0, filter.val().length))
{
$(this).parent().hide();
} else {
$(this).parent().show();
}
});
});