Show only Three Items at a Time with slideToggle onClick

I’m using jQuery to slideToggle items for display. What I need to know is if there is a way to only show three at a time? If you go here and click on the ‘More Video Testimonials’, it lists all of the rest. I would like to have only three at a time load for every time the slideToggle is clicked.

Any suggestions on how this can be done?

Script:

<script>
	jQuery("#moretests").click(function(){    
		jQuery("#tesmon").slideToggle(500);
    });

</script>

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.