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>