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 try to detect if some exists in :

var listBoxSelector = $("div#selectors select:eq(1)");
var option = listBoxSelector.find("option[value=" + value + "]:eq(0)");
alert(option);

But if such option not exists I receive Object in any case. What is the better way to detect is with some value is exists in or not?

share|improve this question
possible duplicate of jQuery determining if element exists on page – Felix Kling Aug 16 '12 at 10:17

3 Answers

up vote 2 down vote accepted

You can use the length property of the jQuery object:

The number of elements in the jQuery object.

if (listBoxSelector.find("option[value="+value+"]").length) {
     alert('Exists')
}
share|improve this answer

Check the length of the option object:

var listBoxSelector = $("div#selectors select:eq(1)");
var option = listBoxSelector.find("option[value=" + value + "]:eq(0)");
if (option.length>0){
   alert(option);
}
share|improve this answer
if(listBoxSelector.find("option[value=" + value + "]:eq(0)") == 0){
  //nothing found
}
share|improve this answer
1  
Did you forget .length? As it is, it won't work. – Felix Kling Aug 16 '12 at 10:29

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.