Answer the question
In order to leave comments, you need to log in
How to implement select and exclude in jquery?
There are two lists (ul>li*10). It is necessary that when clicking on li, an action is applied to all li except the current one.
I sort of did this (how correctly I'm not sure, you can certainly do better)
$('ul.left li, ul.right li').on('click', function () {
var sel = $('ul.left li, ul.right li');
sel.css('opacity','1');
sel.not(this).css('opacity','.2');
sel.addClass('active');
sel.not(this).removeClass('active');
});
Answer the question
In order to leave comments, you need to log in
$('ul.left li, ul.right li').on('click', function () {
var sel = $('ul.left li, ul.right li');
sel.hide();
$(this).show();
});
$('ul.left li, ul.right li').on('click', function () {
var sel = $('ul.left li, ul.right li');
sel.removeClass('active');
$(this).addClass('active');
});
.active {
opacity: 1;
}
ul.left li, ul.right li {
opacity: 0.2;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question