CSS
.test_table tr:hover{
background:#7cbcfc
}
.tr_selected{
background:#7cbcfc
}
JS
$(".test_table tbody").on('click', 'tr', function () {
$(this).siblings('tr').removeClass('tr_selected');
$(this).addClass('tr_selected');
});