javascript - How to remove pagination numbers -


i'm trying remove 'page' numbers @ bottom of listjs pagination here full code example here. attempt other 3 starting valuenames displayed, others can found inputting relevant text, not scrolling pages.

i've attempted set inner , outer window values 0, either isn't solution or i've not configured correctly. you'll tell expertise limited! if that'd great.

var monkeylist = new list('test-list', { valuenames: ['name'], page: 3, innerwindow: 0, outerwindow: 0, plugins: [ listpagination({}) ]  }); 

you hide pagination - add following css

.pagination{   display:none } 

http://codepen.io/anon/pen/aokojo


Comments