Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know there's one or two similar questions on here but the answers provided don't solve my problem. I am creating a random number, then I want to highlight a particular element that is the nth-child (using that random number)

Here is the code, it works if I use a regular number but highlights every child if I use the variable.

c = $(".slideList li").length;
rn = Math.floor(Math.random() * c);
$('.slideList > li:nth-child(" + rn + ")').addClass('on');
$('.testBoxesContain > div:nth-child(" + rn + ")').fadeIn();
share|improve this question

2 Answers

Quotes mix-up:

$('.slideList > li:nth-child(' + rn + ')')

not

$('.slideList > li:nth-child(" + rn + ")')
share|improve this answer
arf. cheers dude! always something simple... – Jon Stevens Aug 2 '12 at 16:12
Please accept an answer if you are happy this is the solution. (Refer to SO FAQs if you're new to the system). – Utkanos Aug 2 '12 at 16:37

You want to use the same kind of quote to end the string and start another.

$('.slideList > li:nth-child(' + rn + ')').addClass('on');

This ends the string, concatenates rn, and then concatenates the rest the string.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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