$(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%;
} var a = document.getElementsByClassName('btn btn-danger btn-sm');
for ( var i=0; i<a.length; i++ ) {
a[i].click();
}