$(document).on('click', '.deleteBtn', function() {
$(this).parents('li').remove();
});
$('.tab-bar__link').each(function() {
if ( $(this).attr('href') == location.hash ) {
$(this).addClass('tab-bar__link_active');
}
});
img {
position:absolute;
left:50%;
top:-50px;
height:100px;
width:100px;
margin-left:-50px;
border-radius:50%;
}