Anand Jaiswar
Anand Jaiswar

Reputation: 51

List pagination using jQuery Pagination

I'm working on .Net MVC project. I'm in need to show list for multiple divs with paging feature. Please see below for an example:

I want to show three projects at a time, and paging to show next divs. How can I do this? Thank you.

Upvotes: 2

Views: 2257

Answers (1)

Anand Jaiswar
Anand Jaiswar

Reputation: 51

I have done this using List.js

<div id="listId">
  <ul class="list">
      // A bunch of items
  </ul>
  <ul class="pagination"></ul>
</div>

<script>
  var options = {
    valueNames: [ 'name', 'category' ],
    page: 3,
    plugins: [
      ListPagination({})
    ]
  };

  var listObj = new List('listId', options);
</script>

Upvotes: 3

Related Questions