var $res = $(res),
$table = $res.find('.table.not-mobile-content').html(),
$mobile = $res.find('.mobile-signals-block').html();
if($table.length) {
$('.table.not-mobile-content').html($table);
}
if($mobile.length) {
$('.mobile-signals-block').html($mobile);
}