Не могу понять почему не меняется свойство у ссылки, при нажатии, при этом класс добавляется
Вот сам код
$(function() {
$(".item-list-dir").click(function () {
$(".item-list-dir").removeClass("active");
$(this).addClass("active");
$(this).hasClass("kitchen").css("background-color", "yellow");
});
});
Ответ
https://api.jquery.com/hasclass/
if ($(this).hasClass("kitchen"))
$(this).css("background-color", "yellow");
Комментариев нет:
Отправить комментарий