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.

how do i find if ul contains li with id 'liSubTask1' exists or not in an if condition in jquery

 <ul id='ulTask'>
   <li id='liSubTask1'>subTask1</li>
   <li id='liSubTask2'>subTask2</li>
   <li id='liSubTask3'>subTask3</li>
   <li id='liSubTask4'>subTask4</li>
   <li id='liSubTask5'>subTask5</li>
 </ul>

i wanted to find out if "li with id" exists in ul then do some thing

share|improve this question
Please read the site FAQ. You have not accepted any answers despite a number of responses. – mrtsherman Apr 16 '12 at 6:36

6 Answers

up vote 6 down vote accepted
if($("#ulTask #liSubTask1").length)
{
   //your code here
}
share|improve this answer

The ">" symbol restricts a selector to direct descendents of the first selector: http://api.jquery.com/child-selector/

if ($('#ulTask > li#liSubTask4').length) {
   //...
}
share|improve this answer
if($('ul#ulTask li#liSubTask1').length) {
   // do stuff
}
share|improve this answer
var nextli = $("#ulTask").next(li);
var id = nextli.attr('id');
share|improve this answer

this sounds very familiar to these questions "Is there an “exists” function for jQuery" and "How do you check if a selector exists in jQuery?"

jQuery.fn.exists = function(){return this.length>0;}

if ($(selector).exists()) {
    // Do something
}
share|improve this answer

use the following code if you want to check all the inner child elements too..

if($('#ulId').find('#liId').length > 0) 
share|improve this answer

Your Answer

 
discard

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