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>