if(window.location.hash) {
var hash = window.location.hash.substring(1);
if ($('#'+hash).length) {
$('html, body').stop().animate({
scrollTop: $('#'+hash).offset().top-100
}, 1000);
}
}
Не могу разобраться. Почему у меня выдает две картинки на фоне.
.description-block {
height: 50px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.description-block {
height: 50px;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 3; //Многоточие в конце 3 строки
}
<a id="user" href="https://www.youtube.com/channelID">Петя</a>
<script>
$(document).ready(function(){
$("a#user:contains('Петя')").attr('href', 'http://www.instagram.com/userid');
});
</script>