Здравствуйте!
Подключил библиотеку jquery на всех браузерах скрипты работают, а на Сфари не работает.
Вот пример кода:
var docimg = $(".list-group-item-doc img").hover(function(){
$(this).parent().find("h4").css("bottom","15px");
}, function(){
$(this).parent().find("h4").css("bottom","10px");
});
var images = [...document.querySelectorAll('.list-group-item-doc')]
images.forEach(function(img, i) {
var timeout = 700 * i // ms
setTimeout(function(){
img.classList.add('visible')
}, timeout)
});
И вот использую bootstrap.min.js и тоже не работает.