Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i achieve the following using jquery. I tried to use css but to no avail so i am thinking of using jquery.How can i achieve this?? I tried to append but to no avail.

 <ul>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <div class="clear"></div>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <div class="clear"></div>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <div class="clear"></div>
    </ul>

Any help or suggestion is welcome. Thanks!

share|improve this question
1  
where is your code of what you tried? – mercsen Jan 25 at 4:51
1  
please check 'undefineds' answer and do not put divs in a ul; it makes your markup invalid. – Darko Z Jan 25 at 5:04

3 Answers

up vote 0 down vote accepted

You'll want to use the nth child selector.

$('ul li:nth-child(5n)').after('<li class="clear"></li>');
share|improve this answer
wow, I spend a few minutes confirming my use of nth and after were correct and a million other answers cropped up! – JMD Jan 25 at 4:55
1  
another poster who said you should not put div's in a UL is totally right. I updated my answer for the sake of cleanliness, but the actually jquery does not change. The answer is the same. – JMD Jan 25 at 5:07
1  
This would be my preferred method - the easiest to understand and the most concise (IMO) – Darko Z Jan 25 at 5:10

Working Tested Code

<script language="javascript" type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">

    $(document).ready(function()
    {
        $('ul li').each(function(i)
        {
            console.log(i);

            if((i+1) % 5 == 0)
            {
                $(this).after('<div class="clear"></div>');
            }
        });
    });

</script>
share|improve this answer
i have tested it and its works like as you wanted.. – Dipesh Parmar Jan 25 at 5:03
2  
explain down-vote. – Dipesh Parmar Jan 25 at 5:06
I did not downvote, but I would assume it's because '.each' would iterate over every item in the collection, and requires a tracking iterator, and requires a modulus operation....all of which can be condensed to a single line using the nth child. – JMD Jan 25 at 5:57

try the following... It should work..

  $(document).ready(function(){
    $('ul li').each(function(i,val){
    i++;
    if(i%5==0){
    $(this).append('<div class="clear"></div>');
    }
    });
    });
share|improve this answer
index starts from 0,it will not work – Cris Jan 25 at 4:54

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.