Here i have 8 list but i want show only 4 lists with more button after clicking the more button rest of the list will show. please help me out.

Here jquery

$(document).ready(function() {
  $("#accordion").hide();
  $('#acc').click(function() {
    if ($("#accordion").is(":hidden")) {
    $("#accordion").slideDown("fast");
    } 
    else {  $("#accordion").hide(); }       
  });
})  ;

and html

<div>
<h1 style="font-size:12px;"  id="acc">Product</h1>
<div id="accordion">
<ul>
<li>Link1</li>
<li>Link2</li>
<li>Link3</li>
<li>Link4</li>
<li>Link5</li>
<li>Link6</li>
<li>Link7</li>
<li>Link8</li>
</ul>
<span id="more"><a href="#">More</a></span>
</div>
</div>
link|improve this question

One issue that jumps out. Your "more" button is inside the hidden accordion. – J. Steen Jul 26 '11 at 13:55
more button is also hide when refreshing the page. clicking the product 4 list will display with more button. – Mr.T.K Jul 26 '11 at 13:57
@J. Steen It's not an issue. This button should be visible only if accordion is visible with 4 elements at first. – avall Jul 26 '11 at 13:57
@avall, It -won't- be an issue, but it is right now, with the current code... yes? =) – J. Steen Jul 26 '11 at 13:59
@J. Steen I'd say once more it isn't any issue. This button is placed in correct place. – avall Jul 26 '11 at 14:03
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

This is what you're looking for

$(document).ready(function() {
  $("#accordion").hide().find("li:gt(3)").hide();

  $('#acc').click(function() {
    if ($("#accordion").is(":hidden")) {
    $("#accordion").slideDown("fast");
    } 
    else {  $("#accordion").hide(); }       
  });

  $("#more").click(function(){
    $(this).remove();
    $("#accordion li").show();
  });
});
link|improve this answer
yes exactly.......thanks – Mr.T.K Jul 26 '11 at 14:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.