1Shure. Reading the documentation you just have to create your buttons and with jquery do the trick
2
3http://www.listjs.com/docs/list-api
4
5 var i = 1;
6 $('.next').on('click', function(){
7 i++;
8 listObj.show(i, 3);
9 })
10
11 $('.prev').on('click', function(){
12 i--;
13 listObj.show(i, 3);
14 })
15Let me know if it works