Skip to content

Instantly share code, notes, and snippets.

@RuslanAsadov
Created December 21, 2018 19:10
Show Gist options
  • Save RuslanAsadov/535eef26f1a88f1750df73265dbecf88 to your computer and use it in GitHub Desktop.
Save RuslanAsadov/535eef26f1a88f1750df73265dbecf88 to your computer and use it in GitHub Desktop.
hover_element (element__block--hover).js
$('element').hover(function() { //Когда наводим курсор
ths = $(this);
lnk = ths.closest('element').find('element__hover-block');
lnk.addClass('element__hover-block--hover');
}, function() { //Обратная функция (Когда убираем курсор)
lnk.removeClass('element__hover-block--hover');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment