Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just want to find the element with a particular value for a custom attribute.

E.g. I want to find a the div which has the attribute data-divNumber="6".

var number = 6;
var myDiv = $('[data-divNumber = number]');

I tried using http://api.jquery.com/attribute-equals-selector/ but what I've done doesn't work.

There is precisely one element with that particular value for the attribute.

share|improve this question

3 Answers

up vote 8 down vote accepted
var number = 6;
var myDiv = $('div[data-divNumber="' + number + '"]');
share|improve this answer
So does putting the div in here $('div[... specify only to look at div elements? – Chro Dec 25 '11 at 5:58
@ Chro , yes , it does – Ali Foroughi Dec 25 '11 at 6:03

You need to do some string addition to get the number into your selector and the value needs to be quoted.

var number = 6;
var myDiv = $('[data-divNumber="' + number + '"]');

What you're trying to produce after the string addition is this result:

$('[data-divNumber="6"]');
share|improve this answer

I think what you need is:

var number = 6;
var myDiv = $('[data-divNumber="'+number+'"]');
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.