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 to check this has content in a jquery test? I want to check if each li is not empty, do some stuff.

Online demo And code repeart:

HTML

<ul>
 <li>list1</li>
 <li></li>
 <li>list3</il> 
 <li>list4</li>
 <li></li> 
</ul>
<div> </div>

javascript

$('ul li').click(function(){
   var list = $(this).html();
   if($(this':has(*)').length){
         $('div').html( list );
   }
});

CSS

ul{
    list-style:none;
    width:210px;
}
li{
    float:left;
    background:#ccc;
    width:200px;
    height:30px;
    margin:3px;
    display:block;
}
div{
    float:left;
    display:inline-block;
    line-height:30px;
    background:#ff0ff0;
    width:200px;
}
share|improve this question
It's not clear what exactly you're trying to do. Can you elaborate? – Jivings Feb 11 '12 at 16:06

5 Answers

up vote 1 down vote accepted

Check the size (length) of .contents(): http://jsfiddle.net/h8UXV/2/

I have slightly modified your code: You can eliminate the $(this).html() call when the content is empty.

$('ul li').click(function() {
   var $this = $(this);
   if ($this.contents().length) {
         $('div').html( $this.html() );
   }
});
share|improve this answer
Alternatively, you can use $this.is(':empty'). This piece of code does the same thing as .contents().length, but might be slower though. – Rob W Feb 11 '12 at 16:12

Why not just check list, if it has something, it will be thought as true.

$('ul li').click(function(){
   var list = $(this).html();
   if(list){
         $('div').html( list );
   }
});
share|improve this answer

Try this jQuery:

$('li').click(function(){
   if($(this).html().length){
         $('div').html( $(this).html());
   }
});

Updated jsFiddle

share|improve this answer

not tested but use the empty: selector

 if($("li:empty").length{
        $('div').html( list );
    });

http://api.jquery.com/empty-selector/

share|improve this answer

One approach:

$('ul li').click(function(){
    if (!this.childNodes.length){
        $(this).remove();
    }
});​

JS Fiddle demo.

Or:

$('ul li').click(function(){
    if ($(this).is(':empty')){
        $(this).remove();
    }
});​

JS Fiddle demo.

References:

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.