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?