I am trying to use JQuery next() to add CSS to one image at a time highlighting it. When the user clicks a button it should highlight the next() image with a border. Instead though it is highlighting all of the images after it.

$('#imageList img').next().addClass('selected');

It adds the class to ALL the images though.

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

this will get you what you want too http://jsfiddle.net/GWtg8/2/

$(document).ready(function(){
$('#btn').click(function(){
    $('#cont img').not('.selected').first().addClass('selected');
});    });
link|improve this answer
How would I removed the previous class after it has been set so that it only adds selected to one at a time? – Howdy_McGee Jul 14 '11 at 20:02
@Howdy removeClass('selected'). I've addressed that in my answer... – Šime Vidas Jul 14 '11 at 22:11
feedback

First, select the first image:

var img = $('#imageList img:first').addClass('selected');

Now, whenever you want to hightlight the next image, call this function:

function selectNext() {
    img.removeClass('selected').next().addClass('selected');
}
link|improve this answer
feedback

Try this

$(function(){
    var imageList = $('#imageList img'), imgCounter = 0;
    $("buttonSelector").click(function(){
       imageList.eq(imgCounter++).addClass('selected');
    }); 
});
link|improve this answer
feedback

Seems like the following should work pretty well for you, should add the "selected" class to the first image in the set not containing that class:

$('#imageList img:not(.selected)').eq(0).addClass('selected');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.